From b4f772210877099a349d38cb44a7fd6f40b0a352 Mon Sep 17 00:00:00 2001 From: dogeystamp Date: Sun, 27 Aug 2023 10:56:10 -0400 Subject: [PATCH] fish: add more aliases --- src/.config/fish/aliases.fish | 3 +++ src/.config/qbprof/zoom/config/config.py | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 src/.config/qbprof/zoom/config/config.py diff --git a/src/.config/fish/aliases.fish b/src/.config/fish/aliases.fish index e77f263..8c46739 100644 --- a/src/.config/fish/aliases.fish +++ b/src/.config/fish/aliases.fish @@ -3,6 +3,8 @@ function thur; zathura $argv; end # stricter sandbox zathura function zathsec; /usr/bin/zathura -c ~/.config/zathura-sec $argv; end +function calc; calcpy $argv; end + # tmux with 256-color function tmx; tmux -2 $argv; end @@ -64,6 +66,7 @@ end function lstb; qbprof lstb; end function work; qbprof work; end function chat; qbprof chat; end +function zoom; qbprof zoom; end # git stuff abbr -a -- gs git status diff --git a/src/.config/qbprof/zoom/config/config.py b/src/.config/qbprof/zoom/config/config.py new file mode 100644 index 0000000..aa972f2 --- /dev/null +++ b/src/.config/qbprof/zoom/config/config.py @@ -0,0 +1,19 @@ +config.load_autoconfig(False) + +c.input.mode_override = "passthrough" +c.statusbar.show = "never" +c.tabs.show = "multiple" +c.bindings.default["passthrough"] = {} +c.bindings.commands["passthrough"] = { + "": "mode-leave" +} + +c.fonts.default_family = "JetBrains Mono" +c.downloads.location.directory = "~/quar/" +c.scrolling.smooth = True +c.downloads.remove_finished = 1000 + +# homegrown file selector +c.fileselect.handler = "external" +c.fileselect.multiple_files.command = ["st", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"] +c.fileselect.single_file.command = ["st", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"]