Skip to content

Commit

Permalink
config.h edited
Browse files Browse the repository at this point in the history
  • Loading branch information
fam007e committed Sep 24, 2024
1 parent c89ae40 commit a57551f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions config.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ static const char *const autostart[] = {
"flameshot", NULL,
"dunst", NULL,
"picom", "--animations", "-b", NULL,
"/home/fam007e/dwm/scripts/wallpapersSS", NULL,
"/home/fam007e/dwm/scripts/status", NULL,
"~/DWM/scripts/wallpapersSS", NULL,
"~/DWM/scripts/status", NULL,
"slstatus", NULL,
"kitty", NULL,
NULL /* terminate */
Expand Down Expand Up @@ -97,7 +97,7 @@ static const char *launchercmd[] = { "rofi", "-show", "drun", NULL };
static const char *launcheremojicmd[] = { "rofi", "-show", "emoji", NULL };
static const char *launchercalccmd[] = { "rofi", "-show", "calc", "-no-show-match", "-no-sort", NULL };
static const char *termcmd[] = { "kitty", NULL };
static const char *togglemutecmd[] = { "/home/fam007e/dwm/scripts/sounds", NULL };
static const char *togglemutecmd[] = { "~/DWM/scripts/sounds", NULL };
static const char *volumeupcmd[] = { "amixer", "-D", "pulse", "sset", "Master", "5%+", NULL };
static const char *volumedowncmd[] = { "amixer", "-D", "pulse", "sset", "Master", "5%-", NULL };
static const char *brightnessupcmd[] = { "xbacklight", "-inc", "5", NULL };
Expand All @@ -107,8 +107,8 @@ static const char *airplanecmd[] = { "nmcli", "radio", "all", "off", NULL }
static const char *playpausecmd[] = { "playerctl", "play-pause", NULL };
static const char *nextcmd[] = { "playerctl", "next", NULL };
static const char *prevcmd[] = { "playerctl", "previous", NULL };
static const char *wifimenu[] = { "/home/fam007e/dwm/scripts/wifimenu", NULL };
static const char *powermenu[] = { "/home/fam007e/dwm/scripts/powermenu", NULL };
static const char *wifimenu[] = { "~/DWM/scripts/wifimenu", NULL };
static const char *powermenu[] = { "~/DWM/scripts/powermenu", NULL };

static Key keys[] = {
/* modifier key function argument */
Expand All @@ -120,14 +120,14 @@ static Key keys[] = {
{ MODKEY, XK_b, spawn, SHCMD ("brave-browser-nightly")},
{ MODKEY|ShiftMask, XK_b, spawn, SHCMD ("tor-browser")},
{ MODKEY, XK_p, spawn, {.v = powermenu } },
{ MODKEY|ShiftMask, XK_p, spawn, SHCMD ("flameshot gui -p /home/fam007e/Pictures/Screenshots/")},
{ MODKEY|ControlMask, XK_p, spawn, SHCMD ("flameshot full -p /home/fam007e/Pictures/Screenshots/")},
{ MODKEY|ShiftMask, XK_p, spawn, SHCMD ("flameshot gui -p ~/Pictures/Screenshots/")},
{ MODKEY|ControlMask, XK_p, spawn, SHCMD ("flameshot full -p ~/Pictures/Screenshots/")},
{ MODKEY, XK_v, spawn, SHCMD ("vlc")},
{ MODKEY, XK_l, spawn, SHCMD ("slock")},
{ MODKEY, XK_e, spawn, SHCMD ("thunar")},
{ MODKEY, XK_z, spawn, SHCMD ("/home/fam007e/.local/bin/zed")},
{ MODKEY, XK_z, spawn, SHCMD ("~/.local/bin/zed")},
{ MODKEY, XK_w, spawn, {.v = wifimenu } },
{ MODKEY|ControlMask, XK_w, spawn, SHCMD("feh --randomize --bg-fill /home/fam007e/Pictures/Wallpapers/*")},
{ MODKEY|ControlMask, XK_w, spawn, SHCMD("feh --randomize --bg-fill ~/Pictures/Wallpapers/*")},
{ MODKEY|ShiftMask, XK_w, spawn, SHCMD ("looking-glass-client -F")},
{ 0, XF86XK_AudioMute, spawn, {.v = togglemutecmd } },
{ 0, XF86XK_AudioRaiseVolume, spawn, {.v = volumeupcmd } },
Expand Down

0 comments on commit a57551f

Please sign in to comment.