From 7fa09fa52f180192979344329c06ca6436213273 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Mon, 5 May 2025 13:36:01 +1000 Subject: feat: print scheme command Generates and prints a scheme for an image (or the current wallpaper if not given) Also record use hevc codec --- main.fish | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'main.fish') 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 -- cgit v1.2.3-freya