diff options
author | Matthew Lemon <y@yulqen.org> | 2025-01-08 08:51:13 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2025-01-08 08:51:18 +0000 |
commit | 7317eb905bd0966237ea3131f3d81c21244b83b1 (patch) | |
tree | 1756012c7e2ac48d467cecf5ed461c7975b24d51 /fish | |
parent | 2b29dd3b148aca6124c9e065ca10227acc925f23 (diff) |
Diffstat (limited to '')
-rw-r--r-- | fish2025/functions/bglist.fish | 4 | ||||
-rw-r--r-- | fish2025/functions/jrnl.fish | 4 | ||||
-rw-r--r-- | fish2025/functions/xterm-cascadia-gainsboro.fish | 4 | ||||
-rw-r--r-- | fish2025/functions/xterm-cascadia-goldenrod.fish | 4 |
4 files changed, 16 insertions, 0 deletions
diff --git a/fish2025/functions/bglist.fish b/fish2025/functions/bglist.fish new file mode 100644 index 0000000..fb03218 --- /dev/null +++ b/fish2025/functions/bglist.fish @@ -0,0 +1,4 @@ +function bglist --wraps='borg list ssh://u423613@u423613.your-storagebox.de:23/./backups/matt_desktop' --description 'alias bglist=borg list ssh://u423613@u423613.your-storagebox.de:23/./backups/matt_desktop' + borg list ssh://u423613@u423613.your-storagebox.de:23/./backups/matt_desktop $argv + +end diff --git a/fish2025/functions/jrnl.fish b/fish2025/functions/jrnl.fish new file mode 100644 index 0000000..aa21768 --- /dev/null +++ b/fish2025/functions/jrnl.fish @@ -0,0 +1,4 @@ +function jrnl --wraps='uv run ~/code/python/journal-tools/update_journal.py' --description 'alias jrnl=uv run ~/code/python/journal-tools/update_journal.py' + uv run ~/code/python/journal-tools/update_journal.py $argv + +end diff --git a/fish2025/functions/xterm-cascadia-gainsboro.fish b/fish2025/functions/xterm-cascadia-gainsboro.fish new file mode 100644 index 0000000..213f2de --- /dev/null +++ b/fish2025/functions/xterm-cascadia-gainsboro.fish @@ -0,0 +1,4 @@ +function xterm-cascadia-gainsboro --wraps=xterm\ -fg\ black\ -bg\ Gainsboro\ -fa\ Cascadia\\\ Mono\ -fs\ 10 --description alias\ xterm-cascadia-gainsboro=xterm\ -fg\ black\ -bg\ Gainsboro\ -fa\ Cascadia\\\ Mono\ -fs\ 10 + xterm -fg black -bg Gainsboro -fa Cascadia\ Mono -fs 10 $argv + +end diff --git a/fish2025/functions/xterm-cascadia-goldenrod.fish b/fish2025/functions/xterm-cascadia-goldenrod.fish new file mode 100644 index 0000000..1ea0728 --- /dev/null +++ b/fish2025/functions/xterm-cascadia-goldenrod.fish @@ -0,0 +1,4 @@ +function xterm-cascadia-goldenrod --wraps=xterm\ -fg\ black\ -bg\ Goldenrod\ -fa\ Cascadia\\\ Mono\ -fs\ 10 --description alias\ xterm-cascadia-goldenrod=xterm\ -fg\ black\ -bg\ Goldenrod\ -fa\ Cascadia\\\ Mono\ -fs\ 10 + xterm -fg black -bg Goldenrod -fa Cascadia\ Mono -fs 10 $argv + +end |