summaryrefslogtreecommitdiff
path: root/main.fish
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-05 13:36:01 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-05 13:36:01 +1000
commit7fa09fa52f180192979344329c06ca6436213273 (patch)
tree6f0021a05598f9aab4ffa3e73f3a38bdfb6da59a /main.fish
parentscheme: migrate to material (diff)
downloadcaelestia-cli-7fa09fa52f180192979344329c06ca6436213273.tar.gz
caelestia-cli-7fa09fa52f180192979344329c06ca6436213273.tar.bz2
caelestia-cli-7fa09fa52f180192979344329c06ca6436213273.zip
feat: print scheme command
Generates and prints a scheme for an image (or the current wallpaper if not given) Also record use hevc codec
Diffstat (limited to 'main.fish')
-rwxr-xr-xmain.fish6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.fish b/main.fish
index 0ae2863..78b005e 100755
--- a/main.fish
+++ b/main.fish
@@ -40,7 +40,11 @@ if test "$argv[1]" = workspace-action
end
if test "$argv[1]" = scheme
- $src/scheme/main.fish $argv[2..]
+ if test "$argv[2]" = print
+ $src/scheme/gen-print-scheme.fish $argv[3..]
+ else
+ $src/scheme/main.fish $argv[2..]
+ end
exit
end