qtile: add keybind to open bitwarden launcher

This commit is contained in:
Guilherme Rugai Freire 2021-08-23 09:01:56 -03:00
parent 7fb79ca781
commit 9f9057cd20
No known key found for this signature in database
GPG Key ID: 0F9FE41723A8A297

View File

@ -33,6 +33,9 @@ WEB_QUICK_OPEN = os.path.expanduser(
EMOJI_LAUNCHER = os.path.expanduser(
"~/.scripts/bin/clip-moji"
)
BITWARDEN_LAUNCHER = os.path.expanduser(
"~/.scripts/bin/bwmenu"
)
SHOW_KEYBINDS = f"{TERMINAL} -t Keybinds -e python3 /home/grfreire/.config/qtile/list_keybinds.py"
MEDIA_CONTROL = os.path.expanduser("~/.config/qtile/media_control.sh")
@ -42,6 +45,7 @@ keys = [
Key([MOD], "r", lazy.spawn(LAUNCHER), desc="Open application launcher"),
Key([MOD], "w", lazy.spawn(WEB), desc="Open web browser"),
Key([MOD], "p", lazy.spawn(WEB_QUICK_OPEN), desc="Open web browser quick launcher"),
Key([MOD], "b", lazy.spawn(BITWARDEN_LAUNCHER), desc="Open bitwarden launcher"),
Key([MOD], "f", lazy.spawn(FILE_MANAGER), desc="Open file manager"),
# Closes window.
Key([MOD], "q", lazy.window.kill(), desc="Kill focused window"),