diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-14 22:50:55 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-14 22:50:55 +1000 |
| commit | ee7291b7f64a359d17eb1d050086ef5357d79055 (patch) | |
| tree | f1c200d8c8ba81030cbb2113a2be122db6508c8f /install/hypr.fish | |
| parent | Merge pull request #5 from dalpax/patch-1 (diff) | |
| parent | Merge branch 'main' into python-rework (diff) | |
| download | caelestia-cli-ee7291b7f64a359d17eb1d050086ef5357d79055.tar.gz caelestia-cli-ee7291b7f64a359d17eb1d050086ef5357d79055.tar.bz2 caelestia-cli-ee7291b7f64a359d17eb1d050086ef5357d79055.zip | |
Merge pull request #6 from caelestia-dots/python-rework
feat: rewrite in python
Diffstat (limited to 'install/hypr.fish')
| -rwxr-xr-x | install/hypr.fish | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/install/hypr.fish b/install/hypr.fish deleted file mode 100755 index 44d2f5a..0000000 --- a/install/hypr.fish +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env fish - -. (dirname (status filename))/util.fish - -install-deps git uwsm hyprland-git hyprpaper-git hyprlock-git hypridle-git polkit-gnome gnome-keyring wl-clipboard wireplumber app2unit-git -install-optional-deps 'gammastep (night light)' 'wlogout (secondary session menu)' 'grimblast-git (screenshot freeze)' 'hyprpicker-git (colour picker)' 'foot (terminal emulator)' 'firefox (web browser)' 'vscodium-bin (IDE)' 'thunar (file manager)' 'nemo (secondary file manager)' 'fuzzel (secondary app launcher)' 'ydotool (alternate paste)' 'trash-cli (auto trash)' - -set -l hypr $CONFIG/hypr - -# Cause hyprland autogenerates a config file when it is removed -set -l remote https://github.com/caelestia-dots/hypr.git -if test -d $hypr - cd $hypr || exit - if test "$(git config --get remote.origin.url)" != $remote - cd .. || exit - confirm-overwrite $hypr dummy - git clone $remote /tmp/caelestia-hypr - rm -rf $hypr && mv /tmp/caelestia-hypr $hypr - else - git pull - end -else - git clone $remote $dir -end - -# Install uwsm envs -install-link $hypr/uwsm $CONFIG/uwsm - -# Enable ydotool if installed -pacman -Q ydotool &> /dev/null && systemctl --user enable --now ydotool.service - -log 'Done.' |