about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-06-19 22:45:16 +0200
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-06-19 22:45:16 +0200
commit1dbdf76bc761914d2c36ea986e80e1f1e3ea1ddb (patch)
tree1dae9ce2ff19a947b29c516ecd4213ea13563d05
parentRemoved the option of rounded corners due to bad functionality (diff)
downloaddwm-1dbdf76bc761914d2c36ea986e80e1f1e3ea1ddb.tar.gz
dwm-1dbdf76bc761914d2c36ea986e80e1f1e3ea1ddb.tar.bz2
dwm-1dbdf76bc761914d2c36ea986e80e1f1e3ea1ddb.zip
Formatting
-rw-r--r--config.h4
-rw-r--r--dwm.c1
2 files changed, 2 insertions, 3 deletions
diff --git a/config.h b/config.h
index 789eaae..7c05168 100644
--- a/config.h
+++ b/config.h
@@ -1,12 +1,12 @@
 /* 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 gappx     = 10;        /* gap pixel between 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 */
-static const int focusonwheel       = 0;				 /* 0 means no focus when click mouse wheel */
+static const int focusonwheel       = 1;				 /* 0 means no focus when click mouse wheel */
 static const char *fonts[]          = { "Noto Sans Display Nerd Font:size=10" };
 static const char dmenufont[]       = "Noto Sans Display Nerd Font:size=10";
 static const char col_gray1[]       = "#222222";
diff --git a/dwm.c b/dwm.c
index b9d1830..501661f 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1339,7 +1339,6 @@ resizemouse(const Arg *arg)
 			}
 			if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
 				resize(c, c->x, c->y, nw, nh, 1);
-
 			break;
 		}
 	} while (ev.type != ButtonRelease);