From 49f4a7398db2d70e8645805338240c3c1b3600fa Mon Sep 17 00:00:00 2001 From: dogeystamp Date: Fri, 6 Sep 2024 19:19:46 -0400 Subject: [PATCH] qutebrowser: use alacritty for file selector instead of st --- src/dot_config/qbprof/dsc/config/config.py | 4 ++-- src/dot_config/qbprof/papr/config/config.py | 4 ++-- src/dot_config/qbprof/zoom/config/config.py | 4 ++-- src/dot_config/qutebrowser/config.py | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/dot_config/qbprof/dsc/config/config.py b/src/dot_config/qbprof/dsc/config/config.py index 2238b4e..74b8407 100644 --- a/src/dot_config/qbprof/dsc/config/config.py +++ b/src/dot_config/qbprof/dsc/config/config.py @@ -17,7 +17,7 @@ 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"] +c.fileselect.multiple_files.command = ["alacritty", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"] +c.fileselect.single_file.command = ["alacritty", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"] c.content.user_stylesheets = ["~/.config/qbprof/dsc/config/amoled-cord.css"] diff --git a/src/dot_config/qbprof/papr/config/config.py b/src/dot_config/qbprof/papr/config/config.py index 48ecf2d..59aa05a 100644 --- a/src/dot_config/qbprof/papr/config/config.py +++ b/src/dot_config/qbprof/papr/config/config.py @@ -18,5 +18,5 @@ c.colors.webpage.darkmode.enabled = True # 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"] +c.fileselect.multiple_files.command = ["alacritty", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"] +c.fileselect.single_file.command = ["alacritty", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"] diff --git a/src/dot_config/qbprof/zoom/config/config.py b/src/dot_config/qbprof/zoom/config/config.py index aa972f2..6fc1d90 100644 --- a/src/dot_config/qbprof/zoom/config/config.py +++ b/src/dot_config/qbprof/zoom/config/config.py @@ -15,5 +15,5 @@ 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"] +c.fileselect.multiple_files.command = ["alacritty", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"] +c.fileselect.single_file.command = ["alacritty", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"] diff --git a/src/dot_config/qutebrowser/config.py b/src/dot_config/qutebrowser/config.py index acf3202..e62fd05 100644 --- a/src/dot_config/qutebrowser/config.py +++ b/src/dot_config/qutebrowser/config.py @@ -147,14 +147,14 @@ config.bind("", "clear-messages;; search") # homegrown file selector c.fileselect.handler = "external" c.fileselect.multiple_files.command = [ - "st", + "alacritty", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm", ] c.fileselect.single_file.command = [ - "st", + "alacritty", "-e", "fish", "-C",