working config

This commit is contained in:
joelchrono12 2023-01-13 08:42:47 -06:00
parent 5125b60835
commit a220873704
Signed by: chrono
GPG Key ID: E23D9C7FA57497A6
2 changed files with 15 additions and 10 deletions

View File

@ -14,23 +14,24 @@ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "mononoki Nerd Font:size=12" };
static const char dmenufont[] = "mononoki Nerd Font:size=12";
static const char col_gray1[] = "#2e3440";
static const char col_gray1[] = "#1a1b26"; /*background color*/
static const char col_gray2[] = "#434c5e";
static const char col_gray3[] = "#d8dee9";
static const char col_gray4[] = "#eceff4";
static const char col_cyan[] = "#bf616a";
static const char col_cyan[] = "#ad8ee6";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
[SchemeSel] = { col_gray1, col_cyan, col_cyan },
};
static const char *const autostart[] = {
"aslstatus", NULL,
"pipewire", NULL,
"alacritty", NULL,
"volumeicon", NULL,
"picom", NULL,
"aw-qt", NULL,
"setxkbmap","-layout","latam", NULL,
"/home/chrono/.local/bin/activitywatch/aw-qt", NULL,
"nm-applet", NULL,
NULL /* terminate */
};
@ -85,7 +86,7 @@ static const char *rofipass[] = { "rofi-pass", NULL };
static const char *browser[] = { "firefox", NULL };
static const char *screenshot[] = { "flameshot","gui", NULL };
static const char *files[] = { "thunar", NULL };
static const char *qpost[] = { "qpost", NULL };
static const char *qpost[] = { "/home/chrono/.config/rofi/scripts/qpost.sh", NULL };
static const char *pulsemixer[] = { "alacritty","--class","pulsemixer","-e","pulsemixer",NULL };
static const char *brightup[] = { "brightnessctl", "set", "+15", NULL };
static const char *brightdown[] = { "brightnessctl", "set", "15-", NULL };

View File

@ -14,20 +14,24 @@ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "mononoki Nerd Font:size=12" };
static const char dmenufont[] = "mononoki Nerd Font:size=12";
static const char col_gray1[] = "#2e3440";
static const char col_gray1[] = "#1a1b26"; /*background color*/
static const char col_gray2[] = "#434c5e";
static const char col_gray3[] = "#d8dee9";
static const char col_gray4[] = "#eceff4";
static const char col_cyan[] = "#bf616a";
static const char col_cyan[] = "#ad8ee6";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
[SchemeSel] = { col_gray1, col_cyan, col_cyan },
};
static const char *const autostart[] = {
"aslstatus", NULL,
"pipewire", NULL,
"alacritty", NULL,
"volumeicon", NULL,
"picom", NULL,
"/home/chrono/.local/bin/activitywatch/aw-qt", NULL,
"nm-applet", NULL,
NULL /* terminate */
};
@ -82,7 +86,7 @@ static const char *rofipass[] = { "rofi-pass", NULL };
static const char *browser[] = { "firefox", NULL };
static const char *screenshot[] = { "flameshot","gui", NULL };
static const char *files[] = { "thunar", NULL };
static const char *qpost[] = { "qpost", NULL };
static const char *qpost[] = { "/home/chrono/.config/rofi/scripts/qpost.sh", NULL };
static const char *pulsemixer[] = { "alacritty","--class","pulsemixer","-e","pulsemixer",NULL };
static const char *brightup[] = { "brightnessctl", "set", "+15", NULL };
static const char *brightdown[] = { "brightnessctl", "set", "15-", NULL };