Add new keybinds

This commit is contained in:
speediegq 2022-09-16 23:51:06 +02:00
parent c163607a00
commit 4cc53b8910
2 changed files with 5 additions and 0 deletions

View file

@ -94,6 +94,8 @@
-- Chained keybinds --
- Super+c & w | Curl wttr.in and open in less
- Super+c & m | Ask the user for a topic and curl cheat.sh
- Super+c & n | Switch to the next track
- Super+c & p | Switch to the previous track
- Super+g & t | Toggle gaps
- Super+g & 0 | Reset gaps
- Super+g & i | Increase inner gaps by 1
@ -112,6 +114,7 @@
- Mute button | Mutes your audio
- Up Volume button | Increases your volume
- Next/Previous song button | Switch to the next/previous track
- Down Volume button | Decreases your volume
- Pause button | Pauses the current track
- Stop button | Stops your defined music player

View file

@ -149,6 +149,8 @@ static const Key keys[] = {
/* Chained keybinds */
{ MODIFIER1, XK_c, XK_w, spawn, RCMD(TERMINAL "speedwm-core -curl-weather") },
{ MODIFIER1, XK_c, XK_n, spawn, RCMD(NEXTMUSIC) },
{ MODIFIER1, XK_c, XK_p, spawn, RCMD(PREVMUSIC) },
{ MODIFIER1, XK_c, XK_m, spawn, RCMD(TERMINAL "speedwm-core -curl-cheatsheet") },
{ MODIFIER1, XK_r, XK_v, spawn, RCMD(TERMINAL VISUALIZER) },
{ MODIFIER1|SHIFT, XK_e, XK_a, spawn, RCMD("speedwm-virtualkeyboard") },