Compare commits
4 Commits
8eddf01386
...
d96f968510
Author | SHA1 | Date | |
---|---|---|---|
d96f968510 | |||
1683ed94f3 | |||
2fbb63af75 | |||
dbbc79b7d8 |
@ -1,5 +1,7 @@
|
|||||||
# https://man.sr.ht/~rjarry/aerc/integrations/password-manager.md
|
# https://man.sr.ht/~rjarry/aerc/integrations/password-manager.md
|
||||||
|
|
||||||
|
echo "Waiting for you to open the password manager..." > /dev/tty
|
||||||
|
|
||||||
secret-tool lookup "$1" "$2"
|
secret-tool lookup "$1" "$2"
|
||||||
# wait until the password is available
|
# wait until the password is available
|
||||||
while [ $? != 0 ]; do
|
while [ $? != 0 ]; do
|
||||||
|
@ -51,8 +51,13 @@ function musrec
|
|||||||
end
|
end
|
||||||
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
|
# git stuff
|
||||||
abbr -a -- gs git status
|
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"
|
@ -48,7 +48,7 @@ while true; do
|
|||||||
KEY="??"
|
KEY="??"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
xsetroot -name " $DATE // $BAT // $KEY"
|
xsetroot -name " $DATE // $BAT // $KEY "
|
||||||
sleep 1
|
sleep 1
|
||||||
done &
|
done &
|
||||||
|
|
||||||
|
@ -30,6 +30,8 @@ export TERMINFO="$XDG_DATA_HOME"/terminfo
|
|||||||
export TERMINFO_DIRS="$XDG_DATA_HOME"/terminfo:/usr/share/terminfo
|
export TERMINFO_DIRS="$XDG_DATA_HOME"/terminfo:/usr/share/terminfo
|
||||||
# go
|
# go
|
||||||
export GOPATH="$XDG_DATA_HOME"/go
|
export GOPATH="$XDG_DATA_HOME"/go
|
||||||
|
# cargo
|
||||||
|
export CARGI_HOME="$XDG_DATA_HOME/cargo"
|
||||||
# npm
|
# npm
|
||||||
export npm_config_userconfig=$XDG_CONFIG_HOME/npm/config
|
export npm_config_userconfig=$XDG_CONFIG_HOME/npm/config
|
||||||
export npm_config_cache=$XDG_CACHE_HOME/npm
|
export npm_config_cache=$XDG_CACHE_HOME/npm
|
||||||
|
Loading…
x
Reference in New Issue
Block a user