rubah border

This commit is contained in:
alfandi 2025-05-13 07:20:16 +00:00
parent 7d7233232a
commit 56f17fe8dd

View File

@ -1,7 +1,7 @@
/* See LICENSE file for copyright and license details. */ /* See LICENSE file for copyright and license details. */
/* appearance */ /* appearance */
static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int borderpx = 2; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */ static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */ static const int topbar = 1; /* 0 means bottom bar */
@ -25,10 +25,11 @@ static const char col_dark2[] = "#203449";
static const char col_dark3[] = "#708594"; static const char col_dark3[] = "#708594";
static const char col_white[] = "#FFFFFF"; static const char col_white[] = "#FFFFFF";
static const char col_green[] = "#00FF00" ;
static const char *colors[][3] = { static const char *colors[][3] = {
/* fg bg border */ /* fg bg border */
[SchemeNorm] = { col_white, col_dark1, col_dark1 }, [SchemeNorm] = { col_white, col_dark1, col_dark1 },
[SchemeSel ] = { col_white, col_dark3, col_dark3 }, [SchemeSel ] = { col_white, col_dark3, col_green },
}; };
/* tagging */ /* tagging */
@ -79,7 +80,7 @@ static const char *dmenucmd[] = { "dmenu_run",
"-sf", col_gray4, NULL }; "-sf", col_gray4, NULL };
static const char *roficmd[] = { "rofi", static const char *roficmd[] = { "rofi",
"-modi", "drun,power:~/.config/rofi/power-menu", "-modi", "drun",
"-show", "drun", "-show", "drun",
"-show-icons", "-show-icons",
"-theme", "Arc-Dark.rasi", "-theme", "Arc-Dark.rasi",
@ -88,7 +89,7 @@ static const char *roficmd[] = { "rofi",
"-window-thumbnail", "-window-thumbnail",
/*"-font", "'Open Sans 18'",*/ /*"-font", "'Open Sans 18'",*/
"-opacity", "-opacity",
"-width", "80", "-width", "80",
"-sidebar-mode", NULL }; "-sidebar-mode", NULL };
static const char *termcmd[] = { "kitty" , NULL }; static const char *termcmd[] = { "kitty" , NULL };