|
|
@ -47,8 +47,8 @@ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen win
|
|
|
|
|
|
|
|
|
|
|
|
static const Layout layouts[] = {
|
|
|
|
static const Layout layouts[] = {
|
|
|
|
/* symbol arrange function */
|
|
|
|
/* symbol arrange function */
|
|
|
|
{ "[]=", tile }, /* first entry is default */
|
|
|
|
{ "T", tile }, /* first entry is default */
|
|
|
|
{ "><>", NULL }, /* no layout function means floating behavior */
|
|
|
|
{ "F", NULL }, /* no layout function means floating behavior */
|
|
|
|
{ "[M]", monocle },
|
|
|
|
{ "[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 *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 *bmcmd[] = { "bash", "/home/sufyaan/docs/sys/gits/scripts-dotfiles/scripts/bookmarks", NULL };
|
|
|
|
static const char *lockcmd[] = { "slock", 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 *screenshotcmd[] = { "flameshot", "gui", NULL };
|
|
|
|
|
|
|
|
static const char *ytcmd[] = { "ytfzf", "-D", "--ii=https://inv.bp.projectsegfau.lt", NULL };
|
|
|
|
|
|
|
|
|
|
|
|
static const Key keys[] = {
|
|
|
|
static const Key keys[] = {
|
|
|
|
/* modifier key function argument */
|
|
|
|
/* modifier key function argument */
|
|
|
@ -85,6 +86,7 @@ static const Key keys[] = {
|
|
|
|
{ MODKEY, XK_e, spawn, {.v = filebrowse } },
|
|
|
|
{ MODKEY, XK_e, spawn, {.v = filebrowse } },
|
|
|
|
{ MODKEY, XK_c, spawn, {.v = sharecmd } },
|
|
|
|
{ MODKEY, XK_c, spawn, {.v = sharecmd } },
|
|
|
|
{ MODKEY, XK_z, spawn, {.v = bmcmd } },
|
|
|
|
{ MODKEY, XK_z, spawn, {.v = bmcmd } },
|
|
|
|
|
|
|
|
{ MODKEY, XK_y, spawn, {.v = ytcmd } },
|
|
|
|
{ MODKEY, XK_Delete, spawn, {.v = powercmd } },
|
|
|
|
{ MODKEY, XK_Delete, spawn, {.v = powercmd } },
|
|
|
|
{ MODKEY, XK_F9, spawn, {.v = volmute } },
|
|
|
|
{ MODKEY, XK_F9, spawn, {.v = volmute } },
|
|
|
|
{ MODKEY, XK_F10, spawn, {.v = voldown } },
|
|
|
|
{ MODKEY, XK_F10, spawn, {.v = voldown } },
|
|
|
|