Use apps from $PATH

This commit is contained in:
Mahesh Asolkar 2021-10-09 22:40:50 -07:00
parent 9fd8d16f60
commit 4ace3e0e13

View File

@ -40,6 +40,7 @@ static const Rule rules[] = {
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
static const int nmaster = 1; /* number of clients in master area */
static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
static const Layout layouts[] = {
/* symbol arrange function */
@ -67,9 +68,9 @@ static const Layout layouts[] = {
/* commands */
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
static const char *termcmd[] = { "/home/mahesh/bin/dwm_term", NULL };
static const char *webcmd[] = { "/home/mahesh/bin/dwm_web", NULL };
static const char *exitcmd[] = { "/home/mahesh/bin/leave_session", NULL };
static const char *termcmd[] = { "dwm_term", NULL };
static const char *webcmd[] = { "dwm_web", NULL };
static const char *exitcmd[] = { "dwm_leave_session", NULL };
static Key keys[] = {
/* modifier key function argument */
@ -111,7 +112,7 @@ static Key keys[] = {
};
/* button definitions */
/* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
static Button buttons[] = {
/* click event mask button function argument */
{ ClkLtSymbol, 0, Button1, setlayout, {0} },