qutebrowser: add profiles
This commit is contained in:
parent
1683ed94f3
commit
d96f968510
@ -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
|
||||
|
11
src/.config/qbprof/dsc/config/config.py
Normal file
11
src/.config/qbprof/dsc/config/config.py
Normal 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"
|
12
src/.config/qbprof/lstb/config/config.py
Normal file
12
src/.config/qbprof/lstb/config/config.py
Normal 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/"
|
4
src/.config/qbprof/work/config/config.py
Normal file
4
src/.config/qbprof/work/config/config.py
Normal file
@ -0,0 +1,4 @@
|
||||
config.load_autoconfig(False)
|
||||
|
||||
c.statusbar.show = "in-mode"
|
||||
c.tabs.show = "multiple"
|
Loading…
Reference in New Issue
Block a user