diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-14 15:42:20 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-14 15:42:20 +1000 |
| commit | b5a91d3ca57d1369d0b7b502112c4b4c9849d26c (patch) | |
| tree | 8ea45e54e0b0c826f65f54ebf82e41cb68163221 /install/gtk.fish | |
| parent | feat: impl pip subcommand (diff) | |
| download | caelestia-cli-b5a91d3ca57d1369d0b7b502112c4b4c9849d26c.tar.gz caelestia-cli-b5a91d3ca57d1369d0b7b502112c4b4c9849d26c.tar.bz2 caelestia-cli-b5a91d3ca57d1369d0b7b502112c4b4c9849d26c.zip | |
internal: remove all legacy fish scripts
Diffstat (limited to 'install/gtk.fish')
| -rwxr-xr-x | install/gtk.fish | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/install/gtk.fish b/install/gtk.fish deleted file mode 100755 index d1c999f..0000000 --- a/install/gtk.fish +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env fish - -. (dirname (status filename))/util.fish - -install-deps git adw-gtk-theme -install-optional-deps 'papirus-icon-theme (icon theme)' - -set -l dist $C_DATA/gtk - -# Update/Clone repo -update-repo gtk $dist - -# Install systemd service -setup-systemd-monitor gtk $dist - -# Set theme -gsettings set org.gnome.desktop.interface gtk-theme \'adw-gtk3-dark\' -if pacman -Q papirus-icon-theme &> /dev/null && test "$(gsettings get org.gnome.desktop.interface icon-theme | cut -d - -f 1 | string sub -s 2)" != Papirus - read -l -p "input 'Set icon theme to Papirus? [Y/n] ' -n" confirm - test "$confirm" = 'n' -o "$confirm" = 'N' || gsettings set org.gnome.desktop.interface icon-theme \'Papirus-Dark\' -end - -log 'Done.' |