6 releases (2 stable)
1.0.1 | Jul 27, 2024 |
---|---|
0.1.3 | Feb 25, 2024 |
0.1.2 | Feb 15, 2024 |
0.1.1 | Aug 25, 2023 |
0.1.0 | May 14, 2023 |
#55 in Configuration
44 downloads per month
35KB
868 lines
wlr-which-key
Keymap manager for wlroots-based compositors. Inspired by which-key.nvim.
Installation
From Source
cargo install wlr-which-key --locked
Configuration
Default config file: $XDG_CONFIG_HOME/wlr-which-key/config.yaml
or ~/.config/wlr-which-key/config.yaml
. Run wlr-which-key --help
for more info.
Keybindings may be single characters (e.g. a
, B
) or xkb key labels (without the XKB_KEY_
prefix, e.g. Return
, Insert
). Ctrl and Alt modifiers are supported (like Ctrl+Return
or Ctrl+Alt+a
).
Example config:
# Theming
font: JetBrainsMono Nerd Font 12
background: "#282828d0"
color: "#fbf1c7"
border: "#8ec07c"
separator: " ➜ "
border_width: 2
corner_r: 10
padding: 15 # Defaults to corner_r
# Anchor and margin
anchor: center # One of center, left, right, top, bottom, bottom-left, top-left, etc.
# Only relevant when anchor is not center
margin_right: 0
margin_bottom: 0
margin_left: 0
margin_top: 0
menu:
"w":
desc: WiFi
submenu:
"t": { desc: Toggle, cmd: wifi_toggle.sh }
"c": { desc: Connections, cmd: kitty --class nmtui-connect nmtui-connect }
"p":
desc: Power
submenu:
"s": { desc: Sleep, cmd: systemctl suspend }
"r": { desc: Reboot, cmd: reboot }
"o": { desc: Off, cmd: poweroff }
"t":
desc: Theme
submenu:
"d": { desc: Dark, cmd: dark-theme on }
"l": { desc: Light, cmd: dark-theme off }
"t": { desc: Toggle, cmd: dark-theme toggle }
"l":
desc: Laptop Screen
submenu:
"t": { desc: Toggle On/Off, cmd: toggle-laptop-display.sh }
"s":
desc: Scale
submenu:
"1": { desc: Set Scale to 1.0, cmd: wlr-randr --output eDP-1 --scale 1 }
"2": { desc: Set Scale to 1.1, cmd: wlr-randr --output eDP-1 --scale 1.1 }
"3": { desc: Set Scale to 1.2, cmd: wlr-randr --output eDP-1 --scale 1.2 }
"4": { desc: Set Scale to 1.3, cmd: wlr-randr --output eDP-1 --scale 1.3 }
Dependencies
~12–20MB
~320K SLoC