From fbbe9b6a33ebbafb38f99be0c1e4db43eda8c2aa Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 8 Jun 2025 13:43:34 +1000 Subject: main: fix shell command --- completions/caelestia.fish | 12 +++++------- main.fish | 4 ++-- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/completions/caelestia.fish b/completions/caelestia.fish index 1a6a065..5e8de47 100644 --- a/completions/caelestia.fish +++ b/completions/caelestia.fish @@ -27,14 +27,12 @@ set -l commands all btop discord firefox fish foot fuzzel hypr safeeyes scripts complete -c caelestia -n "$seen install && not $seen $commands" -a "$commands" # Shell -set -l commands quit reload-css reload-config show brightness media +set -l commands mpris set -l not_seen "$seen shell && not $seen $commands" -complete -c caelestia -n $not_seen -a 'reload-css' -d 'Reload shell styles' -complete -c caelestia -n $not_seen -a 'reload-config' -d 'Reload shell config' -complete -c caelestia -n $not_seen -a 'show' -d 'Show a window' -complete -c caelestia -n $not_seen -a 'toggle' -d 'Toggle a window on the focused monitor' -complete -c caelestia -n $not_seen -a 'media' -d 'Media commands' -complete -c caelestia -n $not_seen -a 'brightness' -d 'Change brightness' +complete -c caelestia -n $not_seen -a 'mpris' -d 'Mpris control' + +set -l commands getActive +complete -c caelestia -n "$seen shell && $seen mpris && not $seen $commands" -a 'getActive' -d 'Get a property from the active mpris player' set -l commands play-pause next previous stop set -l not_seen "$seen shell && $seen media && not $seen $commands" diff --git a/main.fish b/main.fish index 78b005e..6039254 100755 --- a/main.fish +++ b/main.fish @@ -9,8 +9,8 @@ if test "$argv[1]" = shell if test -z "$argv[2..]" $C_DATA/shell/run.fish else - if contains -- 'caelestia' (astal -l) - astal -i caelestia $argv[2..] + if qs list --all | grep "Config path: $C_DATA/shell/shell.qml" &> /dev/null + qs -p $C_DATA/shell ipc call $argv[2..] else warn 'Shell unavailable' end -- cgit v1.2.3-freya