diff options
author | Luke Smith <luke@lukesmith.xyz> | 2020-12-28 09:24:25 -0500 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2020-12-28 09:24:25 -0500 |
commit | e4997553574dac8aa6158af6860a4d4bfe5fe073 (patch) | |
tree | 11e4f4deb6ac6e7e5388f3038fc4ddd712d88498 /config.h | |
parent | 916df3921baa5c6d904eb2c86a4a869fcf591d85 (diff) | |
parent | 30102c3161a6df499b53cae6bf8c6f740dc0b60f (diff) |
Merge branch 'master' of github.com:LukeSmithxyz/dwm
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -37,7 +37,7 @@ const char *spcmd2[] = {TERMINAL, "-n", "spcalc", "-f", "monospace:size=16", "-g static Sp scratchpads[] = { /* name cmd */ {"spterm", spcmd1}, - {"spcalc", spcmd2}, + {"spcalc", spcmd2}, }; /* tagging */ @@ -70,7 +70,7 @@ static const Layout layouts[] = { { "[@]", spiral }, /* Fibonacci spiral */ { "[\\]", dwindle }, /* Decreasing in size right and leftward */ - { "H[]", deck }, /* Master on left, slaves in monocle-like mode on right */ + { "[D]", deck }, /* Master on left, slaves in monocle-like mode on right */ { "[M]", monocle }, /* All windows on top of eachother */ { "|M|", centeredmaster }, /* Master in middle, slaves on sides */ @@ -243,7 +243,7 @@ static Key keys[] = { { MODKEY, XK_F8, spawn, SHCMD("mw -Y") }, { MODKEY, XK_F9, spawn, SHCMD("dmenumount") }, { MODKEY, XK_F10, spawn, SHCMD("dmenuumount") }, - { MODKEY, XK_F11, spawn, SHCMD("mpv --no-cache --no-osc --no-input-default-bindings --input-conf=/dev/null --title=webcam $(ls /dev/video[0,2,4,6,8] | tail -n 1)") }, + { MODKEY, XK_F11, spawn, SHCMD("mpv --no-cache --no-osc --no-input-default-bindings --profile=low-latency --input-conf=/dev/null --title=webcam $(ls /dev/video[0,2,4,6,8] | tail -n 1)") }, { MODKEY, XK_F12, spawn, SHCMD("remaps & notify-send \\\"⌨️ Keyboard remapping...\\\" \\\"Re-running keyboard defaults for any newly plugged-in keyboards.\\\"") }, { MODKEY, XK_space, zoom, {0} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, |