qbprof: move qutebrowser profile logic to a single script
This commit is contained in:
parent
c044ac6457
commit
7cda582e5c
@ -54,10 +54,9 @@ end
|
|||||||
#
|
#
|
||||||
# qutebrowser profiles
|
# qutebrowser profiles
|
||||||
#
|
#
|
||||||
function discord; qutebrowser --basedir ~/.config/qbprof/dsc; end
|
|
||||||
# listenbrainz
|
# listenbrainz
|
||||||
function lstb; qutebrowser --basedir ~/.config/qbprof/lstb; end
|
function lstb; qbprof lstb; end
|
||||||
function work; qutebrowser --basedir ~/.config/qbprof/work; end
|
function work; qbprof work; end
|
||||||
|
|
||||||
# git stuff
|
# git stuff
|
||||||
abbr -a -- gs git status
|
abbr -a -- gs git status
|
||||||
|
4
src/.local/bin/qbprof
Executable file
4
src/.local/bin/qbprof
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# runs a qutebrowser profile
|
||||||
|
|
||||||
|
qutebrowser --basedir ~/.config/qbprof/"$1"
|
Loading…
Reference in New Issue
Block a user