From e916f470b91067a8923dce74ffddc80d0961c051 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Tue, 11 Jan 2022 01:34:32 -0500 Subject: Update colors and compiler --- config.def.h | 55 +++++++++++++++++++++++++++++-------------------------- config.mk | 2 +- 2 files changed, 30 insertions(+), 27 deletions(-) diff --git a/config.def.h b/config.def.h index d99ea53..f318988 100644 --- a/config.def.h +++ b/config.def.h @@ -10,12 +10,13 @@ static const int topbar = 1; /* 0 means bottom bar */ static const int user_bh = 28; /* 0 means that dwm will calculate bar height, >= 1 means dwm will user_bh as bar height */ static const char *fonts[] = { "monospace:size=12" }; static const char dmenufont[] = "monospace:size=12"; -static const char col_norm_fg[] = "#9B9257"; -static const char col_norm_bg[] = "#111A1F"; -static const char col_norm_border[] = "#111A1F"; -static const char col_sel_fg[] = "#111A1F"; -static const char col_sel_bg[] = "#716045"; -static const char col_sel_border[] = "#1A282F"; +static const char col_norm_fg[] = "#447a6c"; +/* static const char col_norm_fg[] = "#83969D"; */ +static const char col_norm_bg[] = "#1b1d1b"; +static const char col_sel_fg[] = "#1b1d1b"; +static const char col_sel_bg[] = "#7D4B23"; +static const char col_norm_border[] = "#C0FFEE"; +static const char col_sel_border[] = "#BADA55"; /* static const char col_gray1[] = "#222d32"; */ /* static const char col_gray2[] = "#343e42"; */ @@ -44,7 +45,7 @@ static const unsigned int alphas[][3] = { /* tagging */ static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; -static const char *montags[] = { " ", " ", " ", " "}; +static const char *montags[] = { " I ", "II", "III", "IV"}; static const Rule rules[] = { /* xprop(1): @@ -52,22 +53,24 @@ static const Rule rules[] = { * WM_NAME(STRING) = title */ /* class instance title tags mask iscentered isfloating isterminal noswallow monitor canfocus */ - { "Gimp", NULL, NULL, 0, 0, 1, 0, 0, -1, 1 }, - { "Firefox", NULL, NULL, 1 << 8, 0, 0, 0, 0, -1, 1 }, + /* { "Gimp", NULL, NULL, 0, 0, 1, 0, 0, -1, 1 }, */ + /* { "Firefox", NULL, NULL, 1 << 8, 0, 0, 0, 0, -1, 1 }, */ { NULL, NULL, "Picture-in-Picture",1, 0, 0, 0, 0, -1, 1 }, { "St", NULL, NULL, 0, 0, 0, 1, 0, -1, 1 }, { "dropdown",NULL, NULL, 0, 1, 1, 0, 0, -1, 1 }, + { NULL, NULL, "Color Picker", 0, 1, 1, 0, 0, -1, 1 }, { "youtube", NULL, NULL, 0, 1, 1, 1, 0, -1, 1 }, - { NULL, NULL, "Event Tester", 0, 0, 1, 0, 1, -1, 1 }, /* xev */ - { "R_x11", NULL, NULL, 0, 0, 1, 0, 1, -1, 0 }, /* R popup */ - { "Matplotlib",NULL, NULL, 0, 1, 1, 0, 1, -1, 0 }, /* Python popups */ - { NULL,NULL,"Subplot Configuration Tool",0, 1, 1, 0, 1, -1, 0 }, /* Python popups */ - - { "Dropbox-cli",NULL, NULL, 0, 0, 1, 0, 1, -1, 1 }, - { NULL, NULL, "Kite", 0, 0, 0, 0, 1, -1, 1 }, - { "Arandr", NULL, NULL, 0, 1, 1, 0, 0, -1, 1 }, - { "Surf", NULL, NULL, 0, 1, 0, 0, 1, -1, 1 }, - { "Zathura", NULL, NULL, 0, 0, 0, 0, 1, -1, 1 }, + { "Nvim-R", NULL, NULL, 0, 0, 0, 1, 1, -1, 1 }, + /* { NULL, NULL, "Event Tester", 0, 0, 1, 0, 1, -1, 1 }, /1* xev *1/ */ + /* { "R_x11", NULL, NULL, 0, 0, 1, 0, 1, -1, 0 }, /1* R popup *1/ */ + /* { "Matplotlib",NULL, NULL, 0, 1, 1, 0, 1, -1, 0 }, /1* Python popups *1/ */ + /* { NULL,NULL,"Subplot Configuration Tool",0, 1, 1, 0, 1, -1, 0 }, /1* Python popups *1/ */ + + /* { "Dropbox-cli",NULL, NULL, 0, 0, 1, 0, 1, -1, 1 }, */ + /* { NULL, NULL, "Kite", 0, 0, 0, 0, 1, -1, 1 }, */ + /* { "Arandr", NULL, NULL, 0, 1, 1, 0, 0, -1, 1 }, */ + /* { "Surf", NULL, NULL, 0, 1, 0, 0, 1, -1, 1 }, */ + /* { "Zathura", NULL, NULL, 0, 0, 0, 0, 1, -1, 1 }, */ }; /* include functions */ @@ -80,13 +83,13 @@ 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 Layout layouts[] = { - /* symbol arrange function */ - { "  ", tile }, /* first entry is default */ - { "  ", NULL }, /* no layout function means floating behavior */ - { "  ", monocle }, - { "  ", centeredmaster }, - { "  ", centeredfloatingmaster }, - { "  ", gaplessgrid }, + /* symbol arrange function */ + { " []= ", tile }, /* first entry is default */ + { " ", NULL }, /* no layout function means floating behavior */ + { " ", monocle }, + { " |_| ", centeredmaster }, + { " |=| ", centeredfloatingmaster }, + { " [+] ", gaplessgrid }, }; /* key definitions */ diff --git a/config.mk b/config.mk index fbaa2f7..45f6233 100644 --- a/config.mk +++ b/config.mk @@ -35,4 +35,4 @@ LDFLAGS = ${LIBS} #LDFLAGS = ${LIBS} # compiler and linker -CC = tcc +CC = clang -- cgit v1.2.3