mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-13 22:02:34 +00:00
feat: Adds runs/calendar and updates hyprkeybinds.
This commit is contained in:
20
runs/after/calendar
Executable file
20
runs/after/calendar
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
install() {
|
||||
mkdir ~/pkgbuilds &>/dev/null
|
||||
git clone https://github.com/psic4t/qcal.git ~/pkgbuilds/qcal
|
||||
pushd ~/pkgbuilds/qcal || exit 1
|
||||
(
|
||||
make && sudo make install
|
||||
)
|
||||
popd
|
||||
}
|
||||
|
||||
uninstall() {
|
||||
sudo rm /usr/local/bin/qcal
|
||||
rm -rf ~/pkgbuilds/qcal
|
||||
}
|
||||
|
||||
arg=${1:-""}
|
||||
[[ $arg == "install" ]] && install
|
||||
[[ $arg == "uninstall" ]] && uninstall
|
||||
3
runs/calendar
Normal file
3
runs/calendar
Normal file
@@ -0,0 +1,3 @@
|
||||
go
|
||||
gnome-calendar
|
||||
gnome-keyring
|
||||
Reference in New Issue
Block a user