From 56f17fe8dd5b4f5118b9a14d08f84decfaee0af8 Mon Sep 17 00:00:00 2001 From: alfandi Date: Tue, 13 May 2025 07:20:16 +0000 Subject: [PATCH] rubah border --- config.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/config.h b/config.h index e38ed70..3d54411 100644 --- a/config.h +++ b/config.h @@ -1,7 +1,7 @@ /* See LICENSE file for copyright and license details. */ /* 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 int showbar = 1; /* 0 means no 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_white[] = "#FFFFFF"; +static const char col_green[] = "#00FF00" ; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_white, col_dark1, col_dark1 }, - [SchemeSel ] = { col_white, col_dark3, col_dark3 }, + [SchemeSel ] = { col_white, col_dark3, col_green }, }; /* tagging */ @@ -79,7 +80,7 @@ static const char *dmenucmd[] = { "dmenu_run", "-sf", col_gray4, NULL }; static const char *roficmd[] = { "rofi", - "-modi", "drun,power:~/.config/rofi/power-menu", + "-modi", "drun", "-show", "drun", "-show-icons", "-theme", "Arc-Dark.rasi", @@ -88,7 +89,7 @@ static const char *roficmd[] = { "rofi", "-window-thumbnail", /*"-font", "'Open Sans 18'",*/ "-opacity", - "-width", "80", + "-width", "80", "-sidebar-mode", NULL }; static const char *termcmd[] = { "kitty" , NULL };