qutebrowser: add profiles

This commit is contained in:
dogeystamp 2023-06-20 12:37:27 -04:00
parent 1683ed94f3
commit d96f968510
Signed by: dogeystamp
GPG Key ID: 7225FE3592EFFA38
4 changed files with 34 additions and 2 deletions

View File

@ -51,8 +51,13 @@ function musrec
end
end
# discord in chromium
function discord; chromium --profile-directory="Profile 2" --app=https://app.discord.com & disown; exit; end
#
# qutebrowser profiles
#
function discord; qutebrowser --basedir ~/.config/qbprof/dsc; end
# listenbrainz
function lstb; qutebrowser --basedir ~/.config/qbprof/lstb; end
function work; qutebrowser --basedir ~/.config/qbprof/work; end
# git stuff
abbr -a -- gs git status

View File

@ -0,0 +1,11 @@
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"] = {
"<ctrl-escape>": "mode-leave"
}
c.url.start_pages = "https://app.discord.com"

View File

@ -0,0 +1,12 @@
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"] = {
"<ctrl-escape>": "mode-leave"
}
c.auto_save.session = True
c.url.start_pages = "https://listenbrainz.org/"

View File

@ -0,0 +1,4 @@
config.load_autoconfig(False)
c.statusbar.show = "in-mode"
c.tabs.show = "multiple"