Files
caelestia-cli/main.fish
T
2025-01-18 17:44:58 +11:00

65 lines
1.8 KiB
Fish
Executable File

#!/bin/fish
cd (dirname (realpath (status filename))) || exit
. ./util.fish
if test "$argv[1]" = shell
# Start shell if no args
if test -z "$argv[2..]"
set -q CAELESTIA_SHELL_DIR && set shell_dir $CAELESTIA_SHELL_DIR || set shell_dir ~/.config/caelestia/shell
$shell_dir/run.fish
else
if contains 'caelestia' (astal -l)
log "Sent command '$argv[2..]' to shell"
astal -i caelestia $argv[2..]
else
warn 'Shell unavailable'
end
end
exit
end
if test "$argv[1]" = toggle
set -l valid_toggles communication music sysmon specialws
contains "$argv[2]" $valid_toggles && ./toggles/$argv[2].fish || error "Invalid toggle: $argv[2]"
exit
end
if test "$argv[1]" = workspace-action
./workspace-action.sh $argv[2..]
exit
end
if test "$argv[1]" = scheme
set -l valid_schemes mocha macchiato frappe latte
contains "$argv[2]" $valid_schemes && echo -n $argv[2] > $CACHE/scheme/current.txt || error "Invalid scheme: $argv[2]"
exit
end
set valid_subcommands screenshot workspace-action \
clipboard clipboard-delete emoji-picker \
wallpaper pip
if contains "$argv[1]" $valid_subcommands
./$argv[1].fish $argv[2..]
exit
end
test "$argv[1]" != help && error "Unknown command: $argv[1]"
echo 'Usage: caelestia COMMAND [ ...args ]'
echo
echo 'COMMAND := help | shell | workspace-action | change-wallpaper'
echo
echo ' help: show this help message'
echo ' shell: start the shell or message it'
echo ' screenshot: take a screenshot'
echo ' workspace-action: execute a Hyprland workspace dispatcher in the current group'
echo ' change-wallpaper: change the wallpaper'
echo ' pip: move the focused window into picture in picture mode or start the pip daemon'
# Set exit status
test "$argv[1]" = help
exit