diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-17 16:32:26 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-17 16:32:26 +1100 |
| commit | 2185b60b5842c5f2d87d232cc3dd4546045947a6 (patch) | |
| tree | 9d0545c57ddd88ae4fd1f8eed814ce272a549907 | |
| parent | Initial commit (diff) | |
| download | caelestia-cli-2185b60b5842c5f2d87d232cc3dd4546045947a6.tar.gz caelestia-cli-2185b60b5842c5f2d87d232cc3dd4546045947a6.tar.bz2 caelestia-cli-2185b60b5842c5f2d87d232cc3dd4546045947a6.zip | |
main: message shell
| -rwxr-xr-x | main.fish | 18 | ||||
| -rw-r--r-- | util.fish | 20 |
2 files changed, 26 insertions, 12 deletions
@@ -4,15 +4,31 @@ cd (dirname (status filename)) || exit . ./util.fish +if test "$argv[1]" = shell + if contains 'caelestia' (astal -l) + if test -n "$argv[2..]" + log "Sent command '$argv[2..]' to shell" + astal -i caelestia $argv[2..] + else + warn 'No args given, ignoring' + end + else + warn 'Shell unavailable' + end + exit +end + if test "$argv[1]" = change-wallpaper ./change-wallpaper.fish $argv[2..] + exit end test "$argv[1]" != help && error "Unknown command: $argv[1]" echo 'Usage: caelestia COMMAND' echo -echo 'COMMAND := help | change-wallpaper' +echo 'COMMAND := help | shell | change-wallpaper' echo echo ' help: show this help message' +echo ' shell: send a message to the shell' echo ' change-wallpaper: change the wallpaper' @@ -1,20 +1,18 @@ -function log -a text - set_color cyan +function _out -a colour -a level -a text + set_color $colour # Pass arguments other than text to echo - echo $argv[2..] -- ":: $text" + echo $argv[4..] -- ":: [$level] $text" set_color normal end +function log -a text + _out cyan LOG $text $argv[2..] +end + function warn -a text - set_color yellow - # Pass arguments other than text to echo - echo $argv[2..] -- ":: $text" - set_color normal + _out yellow WARN $text $argv[2..] end function error -a text - set_color red - # Pass arguments other than text to echo - echo $argv[2..] -- ":: $text" - set_color normal + _out red ERROR $text $argv[2..] end |