diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-28 17:37:52 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-28 17:37:52 +1100 |
| commit | fb8bdb541467bc94f0cf8fa6b359f34fb41c7782 (patch) | |
| tree | f733d92b64e85ea4f60d420139e9ee0a195172b8 | |
| parent | install: gtk install script (diff) | |
| download | caelestia-cli-fb8bdb541467bc94f0cf8fa6b359f34fb41c7782.tar.gz caelestia-cli-fb8bdb541467bc94f0cf8fa6b359f34fb41c7782.tar.bz2 caelestia-cli-fb8bdb541467bc94f0cf8fa6b359f34fb41c7782.zip | |
install: fix gtk install
Forgot to add it to main script
| -rw-r--r-- | completions/caelestia.fish | 2 | ||||
| -rw-r--r-- | install/gtk.fish | 1 | ||||
| -rwxr-xr-x | main.fish | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/completions/caelestia.fish b/completions/caelestia.fish index dd12057..d0ad348 100644 --- a/completions/caelestia.fish +++ b/completions/caelestia.fish @@ -22,7 +22,7 @@ complete -c caelestia -n $not_seen -a 'wallpaper' -d 'Change the wallpaper' complete -c caelestia -n $not_seen -a 'pip' -d 'Picture in picture utilities' # Install -set -l commands discord foot fuzzel hypr safeeyes scripts shell +set -l commands discord foot fuzzel hypr safeeyes scripts shell gtk complete -c caelestia -n "$seen install && not $seen $commands" -a "$commands" # Shell diff --git a/install/gtk.fish b/install/gtk.fish index 437f75e..4f687d7 100644 --- a/install/gtk.fish +++ b/install/gtk.fish @@ -3,7 +3,6 @@ . (dirname (status filename))/util.fish install-deps git adw-gtk-theme -install-optional-deps 'xsettingsd (for live reload)' 'glib2 (for live reload)' set -l gtk $CONFIG/gtk @@ -41,7 +41,7 @@ if test "$argv[1]" = scheme end if test "$argv[1]" = install - set -l valid_modules discord foot fuzzel hypr safeeyes scripts shell + set -l valid_modules discord foot fuzzel hypr safeeyes scripts shell gtk contains -- "$argv[2]" $valid_modules && $src/install/$argv[2].fish $argv[3..] || error "Invalid module: $argv[2]" exit end |