Compare commits

..

11 Commits

Author SHA1 Message Date
Mike Wilson
356b646041 Apply pertag patch 2025-01-22 18:21:19 -05:00
Mike Wilson
cebfeb8ba1 Update config.h from systray patch 2025-01-22 17:51:58 -05:00
Mike Wilson
5cb7791680 Apply systray patch 2025-01-22 17:13:13 -05:00
Mike Wilson
68e1b709c0 Ignore .orig files 2025-01-22 15:55:30 -05:00
Mike Wilson
25fb7fc1b1 Apply patch to hide vacant tags 2025-01-22 15:23:53 -05:00
Mike Wilson
1dce644122 Update README for adding alacritty to swallow 2025-01-22 12:03:41 -05:00
Mike Wilson
c38c736add Make swallow work with Alacritty terminal 2025-01-22 11:59:48 -05:00
Mike Wilson
51f20203eb Format README 2025-01-22 11:44:48 -05:00
Mike Wilson
41a035f450 Convert README to markdown 2025-01-22 11:43:35 -05:00
Mike Wilson
849093159a Apply swallow patch 2025-01-22 11:42:29 -05:00
Mike Wilson
a0ea960f7b Add gitignore and map media keys 2025-01-22 10:22:17 -05:00
3 changed files with 3 additions and 4 deletions

View File

@@ -44,7 +44,6 @@ static const float mfact = 0.55; /* factor of master area size [0.05..0.95]
static const int nmaster = 1; /* number of clients in master area */
static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
static const int refreshrate = 120; /* refresh rate (per second) for client move/resize */
static const Layout layouts[] = {
/* symbol arrange function */

View File

@@ -1,5 +1,5 @@
# dwm version
VERSION = 6.6
VERSION = 6.5
# Customize below to fit your system

4
dwm.c
View File

@@ -1402,7 +1402,7 @@ movemouse(const Arg *arg)
handler[ev.type](&ev);
break;
case MotionNotify:
if ((ev.xmotion.time - lasttime) <= (1000 / refreshrate))
if ((ev.xmotion.time - lasttime) <= (1000 / 60))
continue;
lasttime = ev.xmotion.time;
@@ -1601,7 +1601,7 @@ resizemouse(const Arg *arg)
handler[ev.type](&ev);
break;
case MotionNotify:
if ((ev.xmotion.time - lasttime) <= (1000 / refreshrate))
if ((ev.xmotion.time - lasttime) <= (1000 / 60))
continue;
lasttime = ev.xmotion.time;