qutebrowser: use alacritty for file selector instead of st

This commit is contained in:
dogeystamp 2024-09-06 19:19:46 -04:00
parent 53e82406ec
commit 49f4a7398d
Signed by: dogeystamp
GPG Key ID: 7225FE3592EFFA38
4 changed files with 8 additions and 8 deletions

View File

@ -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"]

View File

@ -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"]

View File

@ -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"]

View File

@ -147,14 +147,14 @@ config.bind("<escape>", "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",