diff options
author | Joe <rbo@gmx.us> | 2024-12-24 14:38:57 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-12-24 14:38:57 +0100 |
commit | 0b402ddabf4236bddb580f39733004440a7ede63 (patch) | |
tree | 1183dac1839b031ad9ef7618763d9fc94911f7bc /config.def.h | |
parent | status2d (diff) | |
download | dwm-0b402ddabf4236bddb580f39733004440a7ede63.tar.gz dwm-0b402ddabf4236bddb580f39733004440a7ede63.tar.bz2 dwm-0b402ddabf4236bddb580f39733004440a7ede63.tar.xz dwm-0b402ddabf4236bddb580f39733004440a7ede63.tar.zst dwm-0b402ddabf4236bddb580f39733004440a7ede63.zip |
up
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/config.def.h b/config.def.h index b3c9525..dae6ecc 100644 --- a/config.def.h +++ b/config.def.h @@ -2,9 +2,6 @@ /* appearance */ static const unsigned int borderpx = 3; /* border pixel of windows */ -static const unsigned int brdsh_w = 3; /* width of the app bar dash */ -static const unsigned int brdsh_ypos = 25; /* y-position of the dash */ -static const unsigned int text_ypos = 1; /* y-position of text */ static const unsigned int gappx = 6; /* gaps between windows */ static const unsigned int snap = 24; /* snap pixel */ static const int swallowfloating = 1; /* 1 means swallow floating windows by default */ @@ -17,7 +14,7 @@ static const int showbar = 0; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const int user_bh = 25; /* 0 means that dwm will calculate bar height, >= 1 means dwm will user_bh as bar height */ static const int focusonwheel = 0; -static const char *fonts[] = { "NotoSansMono Nerd Font:size=14" }; +static const char *fonts[] = { "NotoSansMono Nerd Font:size=13" }; static const char dmenufont[] = "monospace:size=11"; static const char col_gray1[] = "#1d2021"; /* bar background */ static const char col_gray2[] = "#32302f"; /* last square, windows borders */ @@ -290,7 +287,6 @@ static const Button buttons[] = { /* click event mask button function argument */ { ClkLtSymbol, 0, Button1, setlayout, {0} }, { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} }, - { ClkWinTitle, 0, Button2, zoom, {0} }, { ClkStatusText, 0, Button2, spawn, {.v = term_cmd } }, { ClkClientWin, MODKEY, Button1, movemouse, {0} }, { ClkClientWin, MODKEY, Button2, togglefloating, {0} }, |