diff options
author | Ben Sima <ben@bsima.me> | 2019-06-19 10:45:11 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-06-19 10:45:11 -0700 |
commit | 31c499378c3ec0bd0a5f51c8e6590b84c9025825 (patch) | |
tree | 90ae76b45797ef513a645d434967622bc750477b | |
parent | 156de15c1b878cd27b2c841ad279d7a4229c2a40 (diff) |
try to get morning brew playing with a keystroke
-rw-r--r-- | cfg.def.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -80,11 +80,16 @@ static struct command mail_commands[] = { DEFCMD("t", "tag", "n eml tag") }; +static struct command play_commands[] = { + DEFCMD("m", "morning brew", "xterm mplayer /mnt/lake/ben/youtube/morning/morning-brew-MvlIb7EPq3Y.mp3") +}; + static struct command commands[] = { DEFPREFIX ("a", "apps" , apps) DEFCMD ("e", "emacs" , "emacsclient -c") DEFCMD ("f", "flameshot" , "flameshot gui") DEFPREFIX ("m", "mail" , mail_commands) + DEFPREFIX ("p", "play" , play_commands) DEFPREFIX ("s", "system" , system_commands) DEFCMD ("r", "run" , "rofi -sidebar-mode -show run") DEFPREFIX ("v", "volume" , volume_commands) |