mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
58 lines
2.4 KiB
Diff
58 lines
2.4 KiB
Diff
diff --git a/config.def.h b/config.def.h
|
|
index b8f667a..8a50720 100644
|
|
--- a/config.def.h
|
|
+++ b/config.def.h
|
|
@@ -105,6 +105,7 @@ static const Key keys[] = {
|
|
{ MODKEY, XK_f, fullscreen, {0} },
|
|
{ MODKEY, XK_space, setlayout, {0} },
|
|
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
|
|
+ { MODKEY, XK_s, togglesticky, {0} },
|
|
{ MODKEY|ShiftMask, XK_f, togglefullscr, {0} },
|
|
{ MODKEY, XK_0, view, {.ui = ~0 } },
|
|
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
|
|
diff --git a/dwm.c b/dwm.c
|
|
index 2e465ba..9c7575a 100644
|
|
--- a/dwm.c
|
|
+++ b/dwm.c
|
|
@@ -50,7 +50,7 @@
|
|
#define CLEANMASK(mask) (mask & ~(numlockmask|LockMask) & (ShiftMask|ControlMask|Mod1Mask|Mod2Mask|Mod3Mask|Mod4Mask|Mod5Mask))
|
|
#define INTERSECT(x,y,w,h,m) (MAX(0, MIN((x)+(w),(m)->wx+(m)->ww) - MAX((x),(m)->wx)) \
|
|
* MAX(0, MIN((y)+(h),(m)->wy+(m)->wh) - MAX((y),(m)->wy)))
|
|
-#define ISVISIBLE(C) ((C->tags & C->mon->tagset[C->mon->seltags]))
|
|
+#define ISVISIBLE(C) ((C->tags & C->mon->tagset[C->mon->seltags]) || C->issticky)
|
|
#define LENGTH(X) (sizeof X / sizeof X[0])
|
|
#define MOUSEMASK (BUTTONMASK|PointerMotionMask)
|
|
#define WIDTH(X) ((X)->w + 2 * (X)->bw)
|
|
@@ -98,7 +98,7 @@ struct Client {
|
|
int basew, baseh, incw, inch, maxw, maxh, minw, minh, hintsvalid;
|
|
int bw, oldbw;
|
|
unsigned int tags;
|
|
- int isfixed, isfloating, isurgent, neverfocus, oldstate, isfullscreen;
|
|
+ int isfixed, isfloating, isurgent, neverfocus, oldstate, isfullscreen, issticky;
|
|
Client *next;
|
|
Client *snext;
|
|
Monitor *mon;
|
|
@@ -227,6 +227,7 @@ static void tagmon(const Arg *arg);
|
|
static void tile(Monitor *m);
|
|
static void togglebar(const Arg *arg);
|
|
static void togglefloating(const Arg *arg);
|
|
+static void togglesticky(const Arg *arg);
|
|
static void toggleopacity(const Arg *arg);
|
|
static void togglefullscr(const Arg *arg);
|
|
static void toggletag(const Arg *arg);
|
|
@@ -1961,6 +1962,15 @@ toggleopacity(const Arg *arg) {
|
|
opacity(c, (bUseOpacity && c != selmon->sel) ? inactiveopacity : activeopacity);
|
|
}
|
|
|
|
+void
|
|
+togglesticky(const Arg *arg)
|
|
+{
|
|
+ if (!selmon->sel)
|
|
+ return;
|
|
+ selmon->sel->issticky = !selmon->sel->issticky;
|
|
+ arrange(selmon);
|
|
+}
|
|
+
|
|
void
|
|
toggletag(const Arg *arg)
|
|
{
|