diff --git a/dwm/config.def.h b/dwm/config.def.h index 107803c..8d0e574 100644 --- a/dwm/config.def.h +++ b/dwm/config.def.h @@ -4,12 +4,12 @@ static const unsigned int borderpx = 0; /* border pixel of windows */ static const unsigned int gappx = 15; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ -static const int showbar = 0; /* 0 means no bar */ +static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const int splitstatus = 1; /* 1 for split status items */ static const char *splitdelim = ";"; /* Character used for separating status */ -static const char *fonts[] = {"JetBrainsMono NF:style=Bold:size=12"}; -static const char dmenufont[] = "JetBrainsMono NF:style=Bold:size=12"; +static const char *fonts[] = {"JetBrainsMono NF:style=Bold:size=13"}; +static const char dmenufont[] = "JetBrainsMono NF:style=Bold:size=13"; static const char col_gray1[] = "#191724"; static const char col_gray2[] = "#dde1e7"; static const char col_gray3[] = "#e0def4"; @@ -43,7 +43,7 @@ static const Rule rules[] = { }; /* layout(s) */ -static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ +static const float mfact = 0.5; /* factor of master area size [0.05..0.95] */ static const int nmaster = 1; /* number of clients in master area */ static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */ @@ -79,7 +79,7 @@ static const char *dmenucmd[] = { "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL}; static const char *termcmd[] = {"st", NULL}; static const char *prtscrcmd[] = {"flameshot", "gui", NULL}; -static const char *kblayoutcmd[] = {"setxkbmap", "hu", NULL}; +static const char *kblayoutcmd[] = {"setxkbmap", "hu", "-option", "caps:escape", NULL}; static const char *firefoxcmd[] = {"firefox", NULL}; static const char *discordcmd[] = {"discord", NULL}; static const char *adbscreencmd[] = {"screenshot", NULL}; @@ -88,8 +88,8 @@ static const char *nextcmd[] = {"adb", "shell", "input", "keyevent", "87", NULL} static const char *previouscmd[] = {"adb", "shell", "input", "keyevent", "88", NULL}; static const char *volumeup[] = {"pulsemixer", "--change-volume", "+5", NULL}; static const char *volumedown[] = {"pulsemixer", "--change-volume", "-5", NULL}; -static const char *volumereset[] = {"pulsemixer", "--set-volume", "65", NULL}; +static const char *volumereset[] = {"pulsemixer", "--set-volume", "55", NULL}; static const char *volumemute[] = {"pulsemixer", "--toggle-mute", NULL}; static const char *emojicmd[] = {"simplemoji", "-szxpt", "dark", "-m", "#e0def4", "--background-color", "#1e1e2e"}; static const char *qalccmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", diff --git a/dwm/config.h b/dwm/config.h index 107803c..8d0e574 100644 --- a/dwm/config.h +++ b/dwm/config.h @@ -4,12 +4,12 @@ static const unsigned int borderpx = 0; /* border pixel of windows */ static const unsigned int gappx = 15; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ -static const int showbar = 0; /* 0 means no bar */ +static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const int splitstatus = 1; /* 1 for split status items */ static const char *splitdelim = ";"; /* Character used for separating status */ -static const char *fonts[] = {"JetBrainsMono NF:style=Bold:size=12"}; -static const char dmenufont[] = "JetBrainsMono NF:style=Bold:size=12"; +static const char *fonts[] = {"JetBrainsMono NF:style=Bold:size=13"}; +static const char dmenufont[] = "JetBrainsMono NF:style=Bold:size=13"; static const char col_gray1[] = "#191724"; static const char col_gray2[] = "#dde1e7"; static const char col_gray3[] = "#e0def4"; @@ -43,7 +43,7 @@ static const Rule rules[] = { }; /* layout(s) */ -static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ +static const float mfact = 0.5; /* factor of master area size [0.05..0.95] */ static const int nmaster = 1; /* number of clients in master area */ static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */ @@ -79,7 +79,7 @@ static const char *dmenucmd[] = { "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL}; static const char *termcmd[] = {"st", NULL}; static const char *prtscrcmd[] = {"flameshot", "gui", NULL}; -static const char *kblayoutcmd[] = {"setxkbmap", "hu", NULL}; +static const char *kblayoutcmd[] = {"setxkbmap", "hu", "-option", "caps:escape", NULL}; static const char *firefoxcmd[] = {"firefox", NULL}; static const char *discordcmd[] = {"discord", NULL}; static const char *adbscreencmd[] = {"screenshot", NULL}; @@ -88,8 +88,8 @@ static const char *nextcmd[] = {"adb", "shell", "input", "keyevent", "87", NULL} static const char *previouscmd[] = {"adb", "shell", "input", "keyevent", "88", NULL}; static const char *volumeup[] = {"pulsemixer", "--change-volume", "+5", NULL}; static const char *volumedown[] = {"pulsemixer", "--change-volume", "-5", NULL}; -static const char *volumereset[] = {"pulsemixer", "--set-volume", "65", NULL}; +static const char *volumereset[] = {"pulsemixer", "--set-volume", "55", NULL}; static const char *volumemute[] = {"pulsemixer", "--toggle-mute", NULL}; static const char *emojicmd[] = {"simplemoji", "-szxpt", "dark", "-m", "#e0def4", "--background-color", "#1e1e2e"}; static const char *qalccmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", diff --git a/slstatus/config.def.h b/slstatus/config.def.h index 7052e30..bf04447 100644 --- a/slstatus/config.def.h +++ b/slstatus/config.def.h @@ -69,6 +69,8 @@ static const struct arg args[] = { {datetime, "%s;", "%G. %B. %-e. %a"}, {disk_free, "%s Free ", "/"}, {run_command, "%s ", "audio"}, {keymap, "%s ", NULL}, + {wifi_essid, "%s ", "wlan0"}, + {battery_perc, "%s%% ", "BAT0"}, {datetime, "%s ", "%H:%M:%S"}, }; diff --git a/slstatus/config.h b/slstatus/config.h index 7052e30..bf04447 100644 --- a/slstatus/config.h +++ b/slstatus/config.h @@ -69,6 +69,8 @@ static const struct arg args[] = { {datetime, "%s;", "%G. %B. %-e. %a"}, {disk_free, "%s Free ", "/"}, {run_command, "%s ", "audio"}, {keymap, "%s ", NULL}, + {wifi_essid, "%s ", "wlan0"}, + {battery_perc, "%s%% ", "BAT0"}, {datetime, "%s ", "%H:%M:%S"}, }; diff --git a/st/config.def.h b/st/config.def.h index 444c838..620c25a 100644 --- a/st/config.def.h +++ b/st/config.def.h @@ -5,7 +5,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "JetBrainsMono NF:style=Regular:size=12"; +static char *font = "JetBrainsMono NF:style=Regular:size=13"; static int borderpx = 0; /* diff --git a/st/config.h b/st/config.h index 444c838..620c25a 100644 --- a/st/config.h +++ b/st/config.h @@ -5,7 +5,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "JetBrainsMono NF:style=Regular:size=12"; +static char *font = "JetBrainsMono NF:style=Regular:size=13"; static int borderpx = 0; /*