Add vlc shortcut 😁

This commit is contained in:
Anas Elgarhy 2022-07-11 04:42:03 +02:00
parent ccd1073b1e
commit aa17697374
2 changed files with 4 additions and 0 deletions

View file

@ -57,6 +57,8 @@
| modkey + s -> space | Toggle between current layout and tile layout |
| modkey + shift + s | Toggle sticky mode |
| modkey + alt + f | Toggle floating window |
| modekey + m -> c | Launche the cmus player |
| modkey + m -> v | Launche vlc video player |
| modkey + 0 | View all tags |
| modkey + shift + 0 | Mirror the current tag in all tags |
| modkey + comma (,) | - |

View file

@ -50,6 +50,8 @@ static Keychord keychords[] = {
/************************************* Start multi media apps *************************************/
// cmus
{2, {{MODKEY, XK_m}, {0, XK_c}}, spawn SHCMD(TERMINAL "-e cmus-rpc --link &>/dev/null & cmus") },
// vlc
{2, {{MODKEY, XK_m}, {0, XK_v}}, spawn SHCMD(TERMINAL "vlc") },
/************************************* Start the emoji piker apps *************************************/
// Emoji selector (rofi)
{1, {{Mod4Mask, XK_e}}, spawn, SHCMD("rofi -show emoji") },