summaryrefslogtreecommitdiff
path: root/suckless
diff options
context:
space:
mode:
Diffstat (limited to 'suckless')
-rw-r--r--suckless/.config/suckless/dwm/config.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/suckless/.config/suckless/dwm/config.h b/suckless/.config/suckless/dwm/config.h
index 9f6b8b0..72b25d2 100644
--- a/suckless/.config/suckless/dwm/config.h
+++ b/suckless/.config/suckless/dwm/config.h
@@ -3,7 +3,7 @@
#include "colors.h"
/* appearance */
-static const unsigned int borderpx = 0; /* border pixel of windows */
+static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const unsigned int gappih = 10; /* horiz inner gap between windows */
static const unsigned int gappiv = 10; /* vert inner gap between windows */
@@ -13,11 +13,6 @@ static int smartgaps = 0; /* 1 means no outer gap when the
static const int swallowfloating = 0; /* 1 means swallow floating windows by default */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
-static const int vertpad = 10; /* vertical padding of bar */
-static const int sidepad = 10; /* horizontal padding of bar */
-static const double activeopacity = 1.0f; /* Window opacity when it's focused (0 <= opacity <= 1) */
-static const double inactiveopacity = 0.5f; /* Window opacity when it's inactive (0 <= opacity <= 1) */
-static Bool bUseOpacity = True; /* Starts with opacity on any unfocused windows */
static const char *fonts[] = { "CaskaydiaCove Nerd Font:pixelsize=16" };
static const char *colors[][3] = {
/* fg bg border */
@@ -91,7 +86,6 @@ static Key keys[] = {
{ MODKEY|CTRLKEY, XK_Up, moveresize, {.v = "0x 0y 0w -25h" } },
{ MODKEY|CTRLKEY, XK_Right, moveresize, {.v = "0x 0y 25w 0h" } },
{ MODKEY|CTRLKEY, XK_Left, moveresize, {.v = "0x 0y -25w 0h" } },
- { MODKEY, XK_a, toggleopacity, {0} },
/* Managing Gaps */
{ MODKEY|ALTKEY, XK_period, incrgaps, {.i = +1 } },