statusbar and minor patches

This commit is contained in:
2023-02-27 20:12:25 +01:00
parent 0e7ec80eac
commit afb9cf3382
36 changed files with 2053 additions and 58 deletions

View File

@@ -90,7 +90,7 @@ static const int horizpadbar = 2; /* horizontal padding for status
static const int vertpadbar = 0; /* vertical padding for statusbar */
#endif // BAR_STATUSPADDING_PATCH
#if BAR_STATUSBUTTON_PATCH
static const char buttonbar[] = "<O>";
static const char buttonbar[] = "";
#endif // BAR_STATUSBUTTON_PATCH
#if BAR_SYSTRAY_PATCH
static const unsigned int systrayspacing = 2; /* systray spacing */
@@ -103,7 +103,7 @@ static const int lcaselbl = 0; /* 1 means make tag label lowerc
#endif // BAR_TAGLABELS_PATCH
#if BAR_UNDERLINETAGS_PATCH
static const unsigned int ulinepad = 5; /* horizontal padding between the underline and tag */
static const unsigned int ulinestroke = 2; /* thickness / height of the underline */
static const unsigned int ulinestroke = 4; /* thickness / height of the underline */
static const unsigned int ulinevoffset = 0; /* how far above the bottom of the bar the line should appear */
static const int ulineall = 0; /* 1 to show underline on all tags, 0 for just the active ones */
#endif // BAR_UNDERLINETAGS_PATCH
@@ -158,9 +158,9 @@ static void (*bartabmonfns[])(Monitor *) = { NULL /* , customlayoutfn */ };
#if BAR_PANGO_PATCH
static const char font[] = "monospace 11";
#else
static const char *fonts[] = { "SauceCodePro Nerd Font:size=11:antialias=true", "monospace:size=11:antialias=true" };
static const char *fonts[] = { "Noto Nerd Font:size=11:antialias=true", "monospace:size=11:antialias=true" };
#endif // BAR_PANGO_PATCH
static const char dmenufont[] = "SauceCodePro Nerd Font:size=11:antialias=true";
static const char dmenufont[] = "Noto Nerd Font:size=11:antialias=true";
static char c000000[] = "#000000"; // placeholder value
@@ -169,40 +169,40 @@ static char normbgcolor[] = "#24273a";
static char normbordercolor[] = "#494d64";
static char normfloatcolor[] = "#5b6078";
static char selfgcolor[] = "#eeeeee";
static char selbgcolor[] = "#005577";
static char selbordercolor[] = "#005577";
static char selfloatcolor[] = "#005577";
static char selfgcolor[] = "#181926";
static char selbgcolor[] = "#ed8796";
static char selbordercolor[] = "#ee99a0";
static char selfloatcolor[] = "#ee99a0";
static char titlenormfgcolor[] = "#cad3f5";
static char titlenormbgcolor[] = "#24273a";
static char titlenormbordercolor[] = "#444444";
static char titlenormfloatcolor[] = "#db8fd9";
static char titlenormbordercolor[] = "#363a4f";
static char titlenormfloatcolor[] = "#c6a0f6";
static char titleselfgcolor[] = "#181926";
static char titleselbgcolor[] = "#f5a97f";
static char titleselbordercolor[] = "#005577";
static char titleselfloatcolor[] = "#005577";
static char titleselfgcolor[] = "#a6da95";
static char titleselbgcolor[] = "#363a4f";
static char titleselbordercolor[] = "#5b6078";
static char titleselfloatcolor[] = "#5b6078";
static char tagsnormfgcolor[] = "#cad3f5";
static char tagsnormbgcolor[] = "#24273a";
static char tagsnormbordercolor[] = "#444444";
static char tagsnormfloatcolor[] = "#db8fd9";
static char tagsnormbordercolor[] = "#363a4f";
static char tagsnormfloatcolor[] = "#363a4f";
static char tagsselfgcolor[] = "#181926";
static char tagsselbgcolor[] = "#f5a97f";
static char tagsselfgcolor[] = "#a6da95";
static char tagsselbgcolor[] = "#181926";
static char tagsselbordercolor[] = "#eed49f";
static char tagsselfloatcolor[] = "#a6da95";
static char tagsselfloatcolor[] = "#8bd5ca";
static char hidnormfgcolor[] = "#5b6078";
static char hidselfgcolor[] = "#227799";
static char hidselfgcolor[] = "#5b6078";
static char hidnormbgcolor[] = "#181926";
static char hidselbgcolor[] = "#222222";
static char hidselbgcolor[] = "#181926";
static char urgfgcolor[] = "#bbbbbb";
static char urgbgcolor[] = "#222222";
static char urgbordercolor[] = "#ff0000";
static char urgfloatcolor[] = "#db8fd9";
static char urgfgcolor[] = "#181926";
static char urgbgcolor[] = "#ed8796";
static char urgbordercolor[] = "#ed8796";
static char urgfloatcolor[] = "#ed8796";
static const char *mutevol[] = {"/usr/bin/pactl", "set-sink-mute", "0", "toggle", NULL};
static const char *downvol[] = {"/usr/bin/pactl", "set-sink-volume", "0", "-3%", NULL};