From fae4c895427b4b6a9e342bfed2049b0055e34f54 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Sun, 7 Feb 2021 15:29:22 +0100 Subject: [PATCH 1/3] Removed comment --- src/config.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/config.h b/src/config.h index ab0ef99..ffde7ba 100644 --- a/src/config.h +++ b/src/config.h @@ -33,13 +33,6 @@ static const char *colors[][3] = { [SchemeSel] = { col_gray4, col_cyan, selected_color }, }; -/* static const char *colors[][3] = { */ -/* /\* fg bg border *\/ */ -/* [SchemeNorm] = { text_color, bg_color_bar, bg_color }, */ -/* [SchemeSel] = { text_color, col_cyan, col_cyan }, */ -/* }; */ - - /* tagging */ static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; From 2aa267ff0727adcf4cb110126f524830c90c36e4 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Fri, 12 Feb 2021 17:53:30 +0100 Subject: [PATCH 2/3] Switched to nitrogen for restoring wallpaper --- xsession/dwm-start | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xsession/dwm-start b/xsession/dwm-start index 9302ba3..4c0a8b3 100755 --- a/xsession/dwm-start +++ b/xsession/dwm-start @@ -10,8 +10,8 @@ $HOME/.screenlayout/layout.sh & $HOME/.config/picom/launch & # Background -# nitrogen --restore & -wal -R +nitrogen --restore & +# wal -R # Anti sleep xset s off & From 7da981960c71acd4a560141e8b6c257de01de2c4 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Tue, 16 Feb 2021 15:50:01 +0100 Subject: [PATCH 3/3] Minor tweaks --- src/config.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/config.h b/src/config.h index ffde7ba..8e5363d 100644 --- a/src/config.h +++ b/src/config.h @@ -7,11 +7,13 @@ static const unsigned int gappx = 20; static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const int usealtbar = 1; /* 1 means use non-dwm status bar */ + static const char *altbarclass = "Polybar"; /* Alternate bar class name */ static const char *alttrayname = "tray"; /* Polybar tray instance name */ static const char *altbarcmd = "$HOME/.config/polybar/launch"; /* Alternate bar launch command */ -static const char *fonts[] = { "Source Code Pro:size=10" }; -static const char dmenufont[] = "Source Code Pro:size=12"; + +static const char *fonts[] = { "Fira Code:size=10" }; +static const char dmenufont[] = "Fira Code:size=11"; static const char bg_color[] = "#111015"; static const char bg_color_bar[] = "#111015"; @@ -29,7 +31,7 @@ static const char col_gray4[] = "#eeeeee"; static const char col_cyan[] = "#5f819d"; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray1 }, + [SchemeNorm] = { col_gray3, bg_color_bar, col_gray1 }, [SchemeSel] = { col_gray4, col_cyan, selected_color }, };