qutebrowser: use alacritty for file selector instead of st
This commit is contained in:
parent
53e82406ec
commit
49f4a7398d
@ -17,7 +17,7 @@ c.downloads.remove_finished = 1000
|
|||||||
|
|
||||||
# homegrown file selector
|
# homegrown file selector
|
||||||
c.fileselect.handler = "external"
|
c.fileselect.handler = "external"
|
||||||
c.fileselect.multiple_files.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 = ["st", "-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"]
|
c.content.user_stylesheets = ["~/.config/qbprof/dsc/config/amoled-cord.css"]
|
||||||
|
@ -18,5 +18,5 @@ c.colors.webpage.darkmode.enabled = True
|
|||||||
|
|
||||||
# homegrown file selector
|
# homegrown file selector
|
||||||
c.fileselect.handler = "external"
|
c.fileselect.handler = "external"
|
||||||
c.fileselect.multiple_files.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 = ["st", "-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"]
|
||||||
|
@ -15,5 +15,5 @@ c.downloads.remove_finished = 1000
|
|||||||
|
|
||||||
# homegrown file selector
|
# homegrown file selector
|
||||||
c.fileselect.handler = "external"
|
c.fileselect.handler = "external"
|
||||||
c.fileselect.multiple_files.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 = ["st", "-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"]
|
||||||
|
@ -147,14 +147,14 @@ config.bind("<escape>", "clear-messages;; search")
|
|||||||
# homegrown file selector
|
# homegrown file selector
|
||||||
c.fileselect.handler = "external"
|
c.fileselect.handler = "external"
|
||||||
c.fileselect.multiple_files.command = [
|
c.fileselect.multiple_files.command = [
|
||||||
"st",
|
"alacritty",
|
||||||
"-e",
|
"-e",
|
||||||
"fish",
|
"fish",
|
||||||
"-C",
|
"-C",
|
||||||
"set -x OUTPUT {}; source ~/.local/bin/fish-fm",
|
"set -x OUTPUT {}; source ~/.local/bin/fish-fm",
|
||||||
]
|
]
|
||||||
c.fileselect.single_file.command = [
|
c.fileselect.single_file.command = [
|
||||||
"st",
|
"alacritty",
|
||||||
"-e",
|
"-e",
|
||||||
"fish",
|
"fish",
|
||||||
"-C",
|
"-C",
|
||||||
|
Loading…
Reference in New Issue
Block a user