From f3ece0398c5c3948c51033cb8308566ad1203f14 Mon Sep 17 00:00:00 2001 From: fam007e Date: Mon, 21 Oct 2024 18:42:07 +0600 Subject: [PATCH] config for DWM edited --- config.def.h | 283 +++++++++++++++++++++++++++++---------------------- config.h | 15 ++- 2 files changed, 174 insertions(+), 124 deletions(-) diff --git a/config.def.h b/config.def.h index c096112..baef87d 100644 --- a/config.def.h +++ b/config.def.h @@ -1,148 +1,193 @@ -/* See LICENSE file for copyright and license details. */ - /* appearance */ -static const unsigned int refresh_rate = 60; /* matches dwm's mouse event processing to your monitor's refresh rate for smoother window interactions */ -static const unsigned int enable_noborder = 1; /* toggles noborder feature (0=disabled, 1=enabled) */ -static const unsigned int borderpx = 1; /* border pixel of windows */ -static const unsigned int snap = 32; /* snap pixel */ -static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ -static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */ -static const unsigned int systrayonleft = 0; /* 0: systray in the right corner, >0: systray on left of status text */ -static const unsigned int systrayspacing = 2; /* systray spacing */ -static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/ -static const int showsystray = 1; /* 0 means no systray */ -static const int showbar = 1; /* 0 means no bar */ -static const int topbar = 1; /* 0 means bottom bar */ -#define ICONSIZE 17 /* icon size */ -#define ICONSPACING 5 /* space between icon and title */ -#define SHOWWINICON 1 /* 0 means no winicon */ -static const char *fonts[] = { "monospace:size=10" }; -static const char dmenufont[] = "monospace:size=10"; -static const char col_gray1[] = "#222222"; -static const char col_gray2[] = "#444444"; -static const char col_gray3[] = "#bbbbbb"; -static const char col_gray4[] = "#eeeeee"; -static const char col_cyan[] = "#005577"; -static const char *colors[][3] = { - /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, +#include +static const unsigned int refresh_rate = 60; +static const unsigned int enable_noborder = 1; +static const unsigned int borderpx = 1; +static const unsigned int snap = 26; +static const int swallowfloating = 1; +static const unsigned int systraypinning = 0; +static const unsigned int systrayonleft = 0; +static const unsigned int systrayspacing = 6; +static const int systraypinningfailfirst = 1; +static const int showsystray = 1; +static const int showbar = 1; +static const int topbar = 1; +#define ICONSIZE 16 +#define ICONSPACING 6 +#define SHOWWINICON 1 + +/* fonts */ +static const char *fonts[] = { + "MesloLGS Nerd Font Mono:size=14", + "NotoColorEmoji:pixelsize=14:antialias=true:autohint=true" +}; + +/* colors */ +static const char normbordercolor[] = "#3B4252"; +static const char normbgcolor[] = "#2E3440"; +static const char normfgcolor[] = "#88C0D0"; +static const char selbordercolor[] = "#434C5E"; +static const char selbgcolor[] = "#434C5E"; +static const char selfgcolor[] = "#88C0D0"; + +static const char *colors[][3] = { + /* fg bg border */ + [SchemeNorm] = { normfgcolor, normbgcolor, normbordercolor }, + [SchemeSel] = { selfgcolor, selbgcolor, selbordercolor }, }; +/* autostart */ static const char *const autostart[] = { - "st", NULL, - NULL /* terminate */ + "xset", "s", "off", NULL, + "xset", "s", "noblank", NULL, + "xset", "-dpms", NULL, + "dbus-update-activation-environment", "--systemd", "--all", NULL, + "/usr/lib/mate-polkit/polkit-mate-authentication-agent-1", NULL, + "flameshot", NULL, + "dunst", NULL, + "picom", "--animations", "-b", NULL, + "~/DWM/scripts/wallpapersSS", NULL, + "~/DWM/scripts/status", NULL, + "slstatus", NULL, + "kitty", NULL, + "protonvpn-app", NULL, + NULL /* terminate */ }; /* tagging */ -static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; - -static const char ptagf[] = "[%s %s]"; /* format of a tag label */ -static const char etagf[] = "[%s]"; /* format of an empty tag */ -static const int lcaselbl = 0; /* 1 means make tag label lowercase */ +static const char *tags[] = { "", "", "", "", "󰕼", "", "", "", "" }; +static const char ptagf[] = "[%s %s]"; +static const char etagf[] = "[%s]"; +static const int lcaselbl = 0; static const Rule rules[] = { - /* xprop(1): - * WM_CLASS(STRING) = instance, class - * WM_NAME(STRING) = title - */ - /* class instance title tags mask isfloating isterminal noswallow monitor */ - { "Gimp", NULL, NULL, 0, 1, 0, 0, -1 }, - { "Firefox", NULL, NULL, 1 << 8, 0, 0, -1, -1 }, - { "St", NULL, NULL, 0, 0, 1, 0, -1 }, - { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */ + /* class instance title tags mask isfloating isterminal noswallow monitor */ + { "St", NULL, NULL, 0, 0, 1, 0, -1 }, + { "kitty", NULL, NULL, 0, 0, 1, 0, -1 }, + { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */ }; /* layout(s) */ -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 float mfact = 0.75; +static const int nmaster = 1; +static const int resizehints = 0; +static const int lockfullscreen = 1; static const Layout layouts[] = { - /* symbol arrange function */ - { "[]=", tile }, /* first entry is default */ - { "><>", NULL }, /* no layout function means floating behavior */ - { "[M]", monocle }, + /* symbol arrange function */ + { "", tile }, /* first entry is default */ + { "", NULL }, /* no layout function means floating behavior */ + { "", monocle }, }; /* key definitions */ -#define MODKEY Mod1Mask +#define MODKEY Mod4Mask #define TAGKEYS(KEY,TAG) \ - { MODKEY, KEY, view, {.ui = 1 << TAG} }, \ - { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \ - { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \ - { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, + { MODKEY, KEY, view, {.ui = 1 << TAG} }, \ + { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \ + { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \ + { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} } -/* helper for spawning shell commands in the pre dwm-5.0 fashion */ #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } - #define STATUSBAR "dwmblocks" + /* 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[] = { "st", NULL }; +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[] = { "~/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 }; +static const char *brightnessdowncmd[]= { "xbacklight", "-dec", "5", NULL }; +static const char *micmutecmd[] = { "amixer", "-D", "pulse", "sset", "Capture", "toggle", NULL }; +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[] = { "~/DWM/scripts/wifimenu", NULL }; +static const char *powermenu[] = { "~/DWM/scripts/powermenu", NULL }; static Key keys[] = { - /* modifier key function argument */ - { MODKEY, XK_p, spawn, {.v = dmenucmd } }, - { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } }, - { MODKEY, XK_b, togglebar, {0} }, - { MODKEY, XK_j, focusstack, {.i = +1 } }, - { MODKEY, XK_k, focusstack, {.i = -1 } }, - { MODKEY|ShiftMask, XK_j, movestack, {.i = +1 } }, - { MODKEY|ShiftMask, XK_k, movestack, {.i = -1 } }, - { MODKEY, XK_i, incnmaster, {.i = +1 } }, - { MODKEY, XK_d, incnmaster, {.i = -1 } }, - { MODKEY, XK_h, setmfact, {.f = -0.05} }, - { MODKEY, XK_l, setmfact, {.f = +0.05} }, - { MODKEY|ShiftMask, XK_h, setcfact, {.f = +0.25} }, - { MODKEY|ShiftMask, XK_l, setcfact, {.f = -0.25} }, - { MODKEY|ShiftMask, XK_o, setcfact, {.f = 0.00} }, - { MODKEY, XK_Return, zoom, {0} }, - { MODKEY, XK_Tab, view, {0} }, - { MODKEY|ShiftMask, XK_c, killclient, {0} }, - { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, - { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, - { MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, - { MODKEY|ShiftMask, XK_f, fullscreen, {0} }, - { MODKEY, XK_space, setlayout, {0} }, - { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, - { MODKEY|ShiftMask, XK_y, togglefakefullscreen, {0} }, - { MODKEY, XK_0, view, {.ui = ~0 } }, - { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, - { MODKEY, XK_comma, focusmon, {.i = -1 } }, - { MODKEY, XK_period, focusmon, {.i = +1 } }, - { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, - { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, - TAGKEYS( XK_1, 0) - TAGKEYS( XK_2, 1) - TAGKEYS( XK_3, 2) - TAGKEYS( XK_4, 3) - TAGKEYS( XK_5, 4) - TAGKEYS( XK_6, 5) - TAGKEYS( XK_7, 6) - TAGKEYS( XK_8, 7) - TAGKEYS( XK_9, 8) - { MODKEY|ShiftMask, XK_q, quit, {0} }, + /* modifier key function argument */ + { MODKEY, XK_r, spawn, {.v = launchercmd} }, + { MODKEY|ControlMask, XK_r, spawn, SHCMD ("protonrestart")}, + { ControlMask, XK_e, spawn, {.v = launcheremojicmd} }, + { MODKEY, XK_c, spawn, {.v = launchercalccmd} }, + { ControlMask|Mod1Mask, XK_t, spawn, {.v = termcmd } }, + { 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 ~/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 ("~/.local/bin/zed")}, + { MODKEY, XK_w, spawn, {.v = wifimenu } }, + { 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 } }, + { 0, XF86XK_AudioLowerVolume, spawn, {.v = volumedowncmd } }, + { 0, XF86XK_MonBrightnessUp, spawn, {.v = brightnessupcmd } }, + { 0, XF86XK_MonBrightnessDown, spawn, {.v = brightnessdowncmd } }, + { 0, XF86XK_AudioMicMute, spawn, {.v = micmutecmd } }, + { 0, XF86XK_WLAN, spawn, {.v = airplanecmd } }, + { 0, XF86XK_AudioPlay, spawn, {.v = playpausecmd } }, + { 0, XF86XK_AudioNext, spawn, {.v = nextcmd } }, + { 0, XF86XK_AudioPrev, spawn, {.v = prevcmd } }, + { MODKEY|ControlMask, XK_b, togglebar, {0} }, + { MODKEY, XK_j, focusstack, {.i = +1 } }, + { MODKEY, XK_k, focusstack, {.i = -1 } }, + { MODKEY|ShiftMask, XK_j, movestack, {.i = +1 } }, + { MODKEY|ShiftMask, XK_k, movestack, {.i = -1 } }, + { MODKEY, XK_i, incnmaster, {.i = +1 } }, + { MODKEY, XK_d, incnmaster, {.i = -1 } }, + { MODKEY, XK_h, setmfact, {.f = -0.05} }, + { MODKEY|ControlMask, XK_l, setmfact, {.f = +0.05} }, + { MODKEY|ShiftMask, XK_h, setcfact, {.f = +0.25} }, + { MODKEY|ShiftMask, XK_l, setcfact, {.f = -0.25} }, + { MODKEY|ShiftMask, XK_o, setcfact, {.f = 0.00} }, + { MODKEY, XK_Return, zoom, {0} }, + { MODKEY, XK_Tab, view, {0} }, + { MODKEY, XK_q, killclient, {0} }, + { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, + { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, + { MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, + { MODKEY, XK_space, setlayout, {0} }, + { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, + { MODKEY, XK_0, view, {.ui = ~0 } }, + { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, + { MODKEY, XK_comma, focusmon, {.i = -1 } }, + { MODKEY, XK_period, focusmon, {.i = +1 } }, + { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, + { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, + TAGKEYS( XK_1, 0), + TAGKEYS( XK_2, 1), + TAGKEYS( XK_3, 2), + TAGKEYS( XK_4, 3), + TAGKEYS( XK_5, 4), + TAGKEYS( XK_6, 5), + TAGKEYS( XK_7, 6), + TAGKEYS( XK_8, 7), + TAGKEYS( XK_9, 8), + { MODKEY|ShiftMask, XK_e, quit, {0} }, }; -/* button definitions */ -/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */ static Button buttons[] = { - /* click event mask button function argument */ - { ClkTagBar, MODKEY, Button1, tag, {0} }, - { ClkTagBar, MODKEY, Button3, toggletag, {0} }, - { ClkWinTitle, 0, Button2, zoom, {0} }, - { ClkStatusText, 0, Button1, sigstatusbar, {.i = 1} }, - { ClkStatusText, 0, Button2, sigstatusbar, {.i = 2} }, - { ClkStatusText, 0, Button3, sigstatusbar, {.i = 3} }, - { ClkClientWin, MODKEY, Button1, moveorplace, {.i = 1} }, - { ClkClientWin, MODKEY, Button2, togglefloating, {0} }, - { ClkClientWin, MODKEY, Button3, resizemouse, {0} }, - { ClkTagBar, 0, Button1, view, {0} }, - { ClkTagBar, 0, Button3, toggleview, {0} }, - { ClkTagBar, MODKEY, Button1, tag, {0} }, - { ClkTagBar, MODKEY, Button3, toggletag, {0} }, + /* click event mask button function argument */ + { ClkLtSymbol, 0, Button1, setlayout, {0} }, + { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} }, + { ClkWinTitle, 0, Button2, zoom, {0} }, + { ClkStatusText, 0, Button2, spawn, {.v = termcmd } }, + { ClkClientWin, MODKEY, Button1, movemouse, {0} }, + { ClkClientWin, MODKEY, Button2, togglefloating, {0} }, + { ClkClientWin, MODKEY, Button3, resizemouse, {0} }, + { ClkTagBar, 0, Button1, view, {0} }, + { ClkTagBar, 0, Button3, toggleview, {0} }, + { ClkTagBar, MODKEY, Button1, tag, {0} }, + { ClkTagBar, MODKEY, Button3, toggletag, {0} }, }; diff --git a/config.h b/config.h index 3bde5a5..baef87d 100644 --- a/config.h +++ b/config.h @@ -18,17 +18,17 @@ static const int topbar = 1; /* fonts */ static const char *fonts[] = { - "MesloLGS Nerd Font Mono:size=12", - "NotoColorEmoji:pixelsize=12:antialias=true:autohint=true" + "MesloLGS Nerd Font Mono:size=14", + "NotoColorEmoji:pixelsize=14:antialias=true:autohint=true" }; /* colors */ static const char normbordercolor[] = "#3B4252"; static const char normbgcolor[] = "#2E3440"; -static const char normfgcolor[] = "#D8DEE9"; +static const char normfgcolor[] = "#88C0D0"; static const char selbordercolor[] = "#434C5E"; static const char selbgcolor[] = "#434C5E"; -static const char selfgcolor[] = "#ECEFF4"; +static const char selfgcolor[] = "#88C0D0"; static const char *colors[][3] = { /* fg bg border */ @@ -50,11 +50,12 @@ static const char *const autostart[] = { "~/DWM/scripts/status", NULL, "slstatus", NULL, "kitty", NULL, + "protonvpn-app", NULL, NULL /* terminate */ }; /* tagging */ -static const char *tags[] = { "", "", "", "", "" }; +static const char *tags[] = { "", "", "", "", "󰕼", "", "", "", "" }; static const char ptagf[] = "[%s %s]"; static const char etagf[] = "[%s]"; static const int lcaselbl = 0; @@ -169,6 +170,10 @@ static Key keys[] = { TAGKEYS( XK_3, 2), TAGKEYS( XK_4, 3), TAGKEYS( XK_5, 4), + TAGKEYS( XK_6, 5), + TAGKEYS( XK_7, 6), + TAGKEYS( XK_8, 7), + TAGKEYS( XK_9, 8), { MODKEY|ShiftMask, XK_e, quit, {0} }, };