diff --git a/config.h b/config.h index 37d4437..432c26e 100644 --- a/config.h +++ b/config.h @@ -47,8 +47,8 @@ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen win static const Layout layouts[] = { /* symbol arrange function */ - { "[]=", tile }, /* first entry is default */ - { "><>", NULL }, /* no layout function means floating behavior */ + { "T", tile }, /* first entry is default */ + { "F", NULL }, /* no layout function means floating behavior */ { "[M]", monocle }, }; @@ -76,8 +76,9 @@ static const char *filebrowse[] = { "/usr/bin/thunar", NULL }; static const char *sharecmd[] = { "/usr/local/bin/st", "-c", "floating-term", "-g", "130x35", "-e", "/home/sufyaan/docs/sys/gits/scripts-dotfiles/scripts/shr", NULL }; static const char *bmcmd[] = { "bash", "/home/sufyaan/docs/sys/gits/scripts-dotfiles/scripts/bookmarks", NULL }; static const char *lockcmd[] = { "slock", NULL }; -static const char *powercmd[] = { "bash", "~/docs/sys/gits/scripts-dotfiles/scripts/system/power", NULL }; +static const char *powercmd[] = { "bash", "/home/sufyaan/docs/sys/gits/scripts-dotfiles/scripts/system/power", NULL }; static const char *screenshotcmd[] = { "flameshot", "gui", NULL }; +static const char *ytcmd[] = { "ytfzf", "-D", "--ii=https://inv.bp.projectsegfau.lt", NULL }; static const Key keys[] = { /* modifier key function argument */ @@ -85,6 +86,7 @@ static const Key keys[] = { { MODKEY, XK_e, spawn, {.v = filebrowse } }, { MODKEY, XK_c, spawn, {.v = sharecmd } }, { MODKEY, XK_z, spawn, {.v = bmcmd } }, + { MODKEY, XK_y, spawn, {.v = ytcmd } }, { MODKEY, XK_Delete, spawn, {.v = powercmd } }, { MODKEY, XK_F9, spawn, {.v = volmute } }, { MODKEY, XK_F10, spawn, {.v = voldown } }, diff --git a/dwm b/dwm index dc13049..536cf5d 100755 Binary files a/dwm and b/dwm differ diff --git a/dwm.o b/dwm.o index d29505a..929fe6e 100644 Binary files a/dwm.o and b/dwm.o differ