qutebrowser: Use joshuto as the file chooser

This works when combined with `quit --output-selected-files`.
This commit is contained in:
Donovan Glover 2023-06-08 11:56:16 -04:00
parent 07c0377ffa
commit 3950a0418a
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -61,11 +61,10 @@
tabwidget.TabWidget.MUTE_STRING = ""
tabwidget.TabWidget.AUDIBLE_STRING = "[A]"
# Use ranger as the file selector
c.fileselect.handler = 'external'
c.fileselect.folder.command = ['kitty', '-e', 'ranger', '--choosedir={}']
c.fileselect.multiple_files.command = ['kitty', '-e', 'ranger', '--choosefiles={}']
c.fileselect.single_file.command = ['kitty', '-e', 'ranger', '--choosefile={}']
c.fileselect.folder.command = ['kitty', '-e', 'joshuto', '--output-file', '{}']
c.fileselect.multiple_files.command = ['kitty', '-e', 'joshuto', '--output-file', '{}']
c.fileselect.single_file.command = ['kitty', '-e', 'joshuto', '--output-file', '{}']
# Better context menu colors
c.colors.contextmenu.disabled.fg = '#808080'