Compare commits

...

4 Commits

7 changed files with 39 additions and 3 deletions

View File

@ -1,5 +1,7 @@
# 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"
# wait until the password is available
while [ $? != 0 ]; do

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"

View File

@ -48,7 +48,7 @@ while true; do
KEY="??"
fi
xsetroot -name " $DATE // $BAT // $KEY"
xsetroot -name " $DATE // $BAT // $KEY "
sleep 1
done &

View File

@ -30,6 +30,8 @@ export TERMINFO="$XDG_DATA_HOME"/terminfo
export TERMINFO_DIRS="$XDG_DATA_HOME"/terminfo:/usr/share/terminfo
# go
export GOPATH="$XDG_DATA_HOME"/go
# cargo
export CARGI_HOME="$XDG_DATA_HOME/cargo"
# npm
export npm_config_userconfig=$XDG_CONFIG_HOME/npm/config
export npm_config_cache=$XDG_CACHE_HOME/npm