Skip to content

Commit

Permalink
config tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisTitusTech committed Apr 30, 2024
1 parent 1a4ebfc commit 4ffe7f7
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions config.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ static const unsigned int snap = 26; /* snap pixel */
static const int swallowfloating = 1; /* 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 = 1; /* systray spacing */
static const unsigned int systrayspacing = 5; /* 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 */
static const Bool viewontag = True; /* Switch view on tag switch */
static const char *fonts[] = { "MesloLGS Nerd Font Mono:size=14", "NotoColorEmoji:pixelsize=10:antialias=true:autohint=true" };
static const char *fonts[] = { "MesloLGS Nerd Font Mono:size=16", "NotoColorEmoji:pixelsize=16:antialias=true:autohint=true" };
static const char normbordercolor[] = "#3B4252";
static const char normbgcolor[] = "#2E3440";
static const char normfgcolor[] = "#D8DEE9";
Expand All @@ -37,7 +37,7 @@ static const char *const autostart[] = {
"flameshot", NULL,
"dunst", NULL,
"picom", NULL,
"sh", "-c", "feh --randomize --bg-max /home/titus/Pictures/backgrounds/*", NULL,
"sh", "-c", "feh --randomize --bg-fill /home/titus/Pictures/backgrounds/*", NULL,
"synergy", NULL,
NULL /* terminate */
};
Expand Down
Binary file modified drw.o
Binary file not shown.
Binary file modified dwm
Binary file not shown.
4 changes: 2 additions & 2 deletions dwm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ drawbar(Monitor *m)
if(showsystray && m == systraytomon(m) && !systrayonleft)
stw = getsystraywidth();

// Draw the status text on the selected monitor.
/* Draw the status text on the selected monitor.
if (m == selmon) {
char *text, *s, ch;
drw_setscheme(drw, scheme[SchemeNorm]);
Expand All @@ -1031,7 +1031,7 @@ drawbar(Monitor *m)
tw = TEXTW(text) - lrpad + 2;
drw_text(drw, m->ww - statusw - stw + x, 0, tw, bh, 0, text, 0);
tw = statusw;
}
}*/

// Resize the bar window to fit the new content.
resizebarwin(m);
Expand Down
Binary file modified dwm.o
Binary file not shown.
Binary file modified release/dwm
Binary file not shown.
Binary file added release/dwm-6.5.tar.gz
Binary file not shown.
Binary file modified util.o
Binary file not shown.

0 comments on commit 4ffe7f7

Please sign in to comment.