mirror of
https://github.com/dylanaraps/sowm.git
synced 2025-05-19 09:30:24 -07:00
Compare commits
38 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
f4cb48d7af | ||
|
ccb96521c1 | ||
|
5663175d57 | ||
|
95596f43aa | ||
|
e595bfb365 | ||
|
d327a0978a | ||
|
0964d47d07 | ||
|
6ca1ff91a4 | ||
|
dabe77272b | ||
|
ea47780ab0 | ||
|
0ed080b99c | ||
|
7e4466e38e | ||
|
56bdacaa84 | ||
|
e22087856b | ||
|
f201a467ea | ||
|
7821aac0d2 | ||
|
a1c80d9b23 | ||
|
0df345e1da | ||
|
b5087acaac | ||
|
3ed647f467 | ||
|
e491a637fe | ||
|
21a35be863 | ||
|
5547cc3a51 | ||
|
67d323458c | ||
|
0004ff3e18 | ||
|
5cc5d25823 | ||
|
0e8cc9fe86 | ||
|
2c3c353d74 | ||
|
69f2c71fb7 | ||
|
a31091472a | ||
|
1d249a96ef | ||
|
f558535e19 | ||
|
243cab5deb | ||
|
4f18161758 | ||
|
087e276736 | ||
|
c1b252bc6d | ||
|
4aa7d1a4d6 | ||
|
facbfcf061 |
9
.github/workflows/main.yml
vendored
9
.github/workflows/main.yml
vendored
@ -1,9 +0,0 @@
|
|||||||
name: CI
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Apply patches.
|
|
||||||
run: make test
|
|
18
Makefile
18
Makefile
@ -1,24 +1,24 @@
|
|||||||
CFLAGS+= -std=c99 -Wall -Wextra -pedantic
|
CFLAGS += -std=c99 -Wall -Wextra -pedantic -Wold-style-declaration
|
||||||
LDADD+= -lX11
|
CFLAGS += -Wmissing-prototypes -Wno-unused-parameter
|
||||||
LDFLAGS=
|
|
||||||
PREFIX ?= /usr
|
PREFIX ?= /usr
|
||||||
BINDIR ?= $(PREFIX)/bin
|
BINDIR ?= $(PREFIX)/bin
|
||||||
|
|
||||||
CC ?= gcc
|
CC ?= gcc
|
||||||
|
|
||||||
all: config.h sowm
|
all: sowm
|
||||||
|
|
||||||
config.h:
|
config.h:
|
||||||
cp config.def.h config.h
|
cp config.def.h config.h
|
||||||
|
|
||||||
sowm: sowm.o
|
sowm: sowm.c sowm.h config.h Makefile
|
||||||
$(CC) $(LDFLAGS) -O3 -o $@ $+ $(LDADD)
|
$(CC) -O3 $(CFLAGS) -o $@ $< -lX11 $(LDFLAGS)
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
install -Dm755 sowm $(DESTDIR)$(BINDIR)/sowm
|
install -Dm755 sowm $(DESTDIR)$(BINDIR)/sowm
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
rm -f $(DESTDIR)$(BINDIR)/sowm
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f sowm *.o
|
rm -f sowm *.o
|
||||||
|
|
||||||
test:
|
.PHONY: all install uninstall clean
|
||||||
for patch in patches/*.patch; do patch --dry-run -p1 < "$$patch"; done
|
|
||||||
|
46
README.md
46
README.md
@ -1,15 +1,16 @@
|
|||||||
# sowm (*Simple Opinionated Window Manager*)
|
# sowm (*~~Simple~~ Shitty Opinionated Window Manager*)
|
||||||
|
|
||||||
<a href="https://user-images.githubusercontent.com/6799467/66687576-9747c200-ec72-11e9-947d-5b96753eab03.jpg"><img src="https://user-images.githubusercontent.com/6799467/66687576-9747c200-ec72-11e9-947d-5b96753eab03.jpg" width="43%" align="right"></a>
|
<a href="https://user-images.githubusercontent.com/6799467/66687576-9747c200-ec72-11e9-947d-5b96753eab03.jpg"><img src="https://user-images.githubusercontent.com/6799467/66687576-9747c200-ec72-11e9-947d-5b96753eab03.jpg" width="43%" align="right"></a>
|
||||||
|
|
||||||
An itsy bitsy floating window manager (*220~ sloc / 24kb compiled!*).
|
An itsy bitsy floating window manager (*220~ sloc!*).
|
||||||
|
|
||||||
- Floating only.
|
- Floating only.
|
||||||
- Fullscreen toggle.
|
- Fullscreen toggle.
|
||||||
- Window centering.
|
- Window centering.
|
||||||
- Mix of mouse and keyboard workflow.
|
- Mix of mouse and keyboard workflow.
|
||||||
- Focus with cursor.
|
- Focus with cursor.
|
||||||
- Rounded corners (*[through patch](https://github.com/dylanaraps/sowm/blob/master/patches/sowm-rounded-corners.patch)*)
|
- Rounded corners (*[through patch](https://github.com/dylanaraps/sowm/pull/58)*)
|
||||||
|
- Titlebars (*[through patch](https://github.com/dylanaraps/sowm/pull/57)*)
|
||||||
|
|
||||||
<a href="https://user-images.githubusercontent.com/6799467/66687814-8cd9f800-ec73-11e9-97b8-6ae77876bd1b.jpg"><img src="https://user-images.githubusercontent.com/6799467/66687814-8cd9f800-ec73-11e9-97b8-6ae77876bd1b.jpg" width="43%" align="right"></a>
|
<a href="https://user-images.githubusercontent.com/6799467/66687814-8cd9f800-ec73-11e9-97b8-6ae77876bd1b.jpg"><img src="https://user-images.githubusercontent.com/6799467/66687814-8cd9f800-ec73-11e9-97b8-6ae77876bd1b.jpg" width="43%" align="right"></a>
|
||||||
|
|
||||||
@ -23,6 +24,8 @@ An itsy bitsy floating window manager (*220~ sloc / 24kb compiled!*).
|
|||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|
Patches available here: https://github.com/dylanaraps/sowm/pulls
|
||||||
|
|
||||||
## Default Keybindings
|
## Default Keybindings
|
||||||
|
|
||||||
**Window Management**
|
**Window Management**
|
||||||
@ -35,8 +38,8 @@ An itsy bitsy floating window manager (*220~ sloc / 24kb compiled!*).
|
|||||||
| `MOD4` + `f` | maximize toggle |
|
| `MOD4` + `f` | maximize toggle |
|
||||||
| `MOD4` + `c` | center window |
|
| `MOD4` + `c` | center window |
|
||||||
| `MOD4` + `q` | kill window |
|
| `MOD4` + `q` | kill window |
|
||||||
| `MOD4` + `1-9` | desktop swap |
|
| `MOD4` + `1-6` | desktop swap |
|
||||||
| `MOD4` + `Shift` +`1-9` | send window to desktop |
|
| `MOD4` + `Shift` +`1-6` | send window to desktop |
|
||||||
| `MOD1` + `TAB` (*alt-tab*) | focus cycle |
|
| `MOD1` + `TAB` (*alt-tab*) | focus cycle |
|
||||||
|
|
||||||
**Programs**
|
**Programs**
|
||||||
@ -68,17 +71,28 @@ An itsy bitsy floating window manager (*220~ sloc / 24kb compiled!*).
|
|||||||
4) (Optional) Apply patch with `git apply patches/patch-name`
|
4) (Optional) Apply patch with `git apply patches/patch-name`
|
||||||
- In case of applying multiple patches, it has to be done **manually**.
|
- In case of applying multiple patches, it has to be done **manually**.
|
||||||
|
|
||||||
|
If you are using GDM, save the following to `/usr/share/xsessions/sowm.desktop`. It is still recommended to start `sowm` from `.xinitrc` or through
|
||||||
|
[your own xinit implementation](https://github.com/dylanaraps/bin/blob/dfd9a9ff4555efb1cc966f8473339f37d13698ba/x).
|
||||||
|
|
||||||
|
```
|
||||||
|
[Desktop Entry]
|
||||||
|
Name=sowm
|
||||||
|
Comment=This session runs sowm as desktop manager
|
||||||
|
Exec=sowm
|
||||||
|
Type=Application
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Thanks
|
## Thanks
|
||||||
|
|
||||||
- 2bwm
|
- [2bwm](https://github.com/venam/2bwm)
|
||||||
- SmallWM
|
- [SmallWM](https://github.com/adamnew123456/SmallWM)
|
||||||
- berry
|
- [berry](https://github.com/JLErvin/berry)
|
||||||
- catwm
|
- [catwm](https://github.com/pyknite/catwm)
|
||||||
- dminiwm
|
- [dminiwm](https://github.com/moetunes/dminiwm)
|
||||||
- dwm
|
- [dwm](https://dwm.suckless.org)
|
||||||
- monsterwm
|
- [monsterwm](https://github.com/c00kiemon5ter/monsterwm)
|
||||||
- openbox
|
- [openbox](https://github.com/danakj/openbox)
|
||||||
- possumwm
|
- [possum-wm](https://github.com/duckinator/possum-wm)
|
||||||
- swm
|
- [swm](https://github.com/dcat/swm)
|
||||||
- tinywm
|
- [tinywm](http://incise.org/tinywm.html)
|
||||||
|
@ -1,96 +0,0 @@
|
|||||||
diff --git a/config.def.h b/config.def.h
|
|
||||||
index cae2009..9ad7175 100644
|
|
||||||
--- a/config.def.h
|
|
||||||
+++ b/config.def.h
|
|
||||||
@@ -26,6 +26,26 @@ static struct key keys[] = {
|
|
||||||
{MOD, XK_p, run, {.com = scrot}},
|
|
||||||
{MOD, XK_Return, run, {.com = term}},
|
|
||||||
|
|
||||||
+ {MOD, XK_h, move, {.com=(char*[]){"move", "left"}, .i=10}},
|
|
||||||
+ {MOD, XK_j, move, {.com=(char*[]){"move", "down"}, .i=10}},
|
|
||||||
+ {MOD, XK_k, move, {.com=(char*[]){"move", "up"}, .i=10}},
|
|
||||||
+ {MOD, XK_l, move, {.com=(char*[]){"move", "right"}, .i=10}},
|
|
||||||
+ {MOD|ShiftMask, XK_h, move, {.com=(char*[]){"resize", "left"}, .i=10}},
|
|
||||||
+ {MOD|ShiftMask, XK_j, move, {.com=(char*[]){"resize", "down"}, .i=10}},
|
|
||||||
+ {MOD|ShiftMask, XK_k, move, {.com=(char*[]){"resize", "up"}, .i=10}},
|
|
||||||
+ {MOD|ShiftMask, XK_l, move, {.com=(char*[]){"resize", "right"}, .i=10}},
|
|
||||||
+
|
|
||||||
+ /*
|
|
||||||
+ {MOD, XK_h, move_left, {.com = {"move"},.i=10}},
|
|
||||||
+ {MOD, XK_j, move_down, {.com = {"move"},.i=10}},
|
|
||||||
+ {MOD, XK_k, move_up, {.com = {"move"},.i=10}},
|
|
||||||
+ {MOD, XK_l, move_right, {.com = {"move"},.i=10}},
|
|
||||||
+ {MOD|ShiftMask, XK_h, resize_left, {.com = {"resize"},.i=10}},
|
|
||||||
+ {MOD|ShiftMask, XK_j, resize_down, {.com = {"resize"},.i=10}},
|
|
||||||
+ {MOD|ShiftMask, XK_k, resize_up, {.com = {"resize"},.i=10}},
|
|
||||||
+ {MOD|ShiftMask, XK_l, resize_right, {.com = {"resize"},.i=10}},
|
|
||||||
+ */
|
|
||||||
+
|
|
||||||
{0, XF86XK_AudioLowerVolume, run, {.com = voldown}},
|
|
||||||
{0, XF86XK_AudioRaiseVolume, run, {.com = volup}},
|
|
||||||
{0, XF86XK_AudioMute, run, {.com = volmute}},
|
|
||||||
diff --git a/sowm.c b/sowm.c
|
|
||||||
index 48222c6..00e2e80 100644
|
|
||||||
--- a/sowm.c
|
|
||||||
+++ b/sowm.c
|
|
||||||
@@ -7,8 +7,9 @@
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <signal.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
+#include <stdio.h>
|
|
||||||
|
|
||||||
-typedef union {
|
|
||||||
+typedef struct {
|
|
||||||
const char** com;
|
|
||||||
const int i;
|
|
||||||
const Window w;
|
|
||||||
@@ -46,6 +47,9 @@ static void win_prev();
|
|
||||||
static void win_next();
|
|
||||||
static void win_to_ws(const Arg arg);
|
|
||||||
static void ws_go(const Arg arg);
|
|
||||||
+static void apply(int x, int y, int w, int h);
|
|
||||||
+static void move(const Arg arg);
|
|
||||||
+
|
|
||||||
static int xerror() { return 0;}
|
|
||||||
|
|
||||||
static client *list = {0}, *ws_list[10] = {0}, *cur;
|
|
||||||
@@ -77,6 +81,31 @@ static void (*events[LASTEvent])(XEvent *e) = {
|
|
||||||
XGetGeometry(d, W, &(Window){0}, gx, gy, gw, gh, \
|
|
||||||
&(unsigned int){0}, &(unsigned int){0})
|
|
||||||
|
|
||||||
+void apply(int x,int y,int w,int h) {
|
|
||||||
+ win_size(cur->w, &wx, &wy, &ww, &wh);
|
|
||||||
+ XMoveResizeWindow(d, cur->w,
|
|
||||||
+ wx + x,
|
|
||||||
+ wy + y,
|
|
||||||
+ ww + w,
|
|
||||||
+ wh + h);
|
|
||||||
+ win_size(cur->w, &wx, &wy, &ww, &wh);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+void move(const Arg arg) {
|
|
||||||
+ if(arg.com[1]=="left") {
|
|
||||||
+ apply((arg.com[0]=="resize")?arg.i:-arg.i, 0, (arg.com[0]=="resize")?-arg.i:0, 0);
|
|
||||||
+ }
|
|
||||||
+ else if(arg.com[1]=="right"){
|
|
||||||
+ apply((arg.com[0]=="resize")?-arg.i:arg.i, 0, (arg.com[0]=="resize")?arg.i:0, 0);
|
|
||||||
+ }
|
|
||||||
+ else if(arg.com[1]=="up"){
|
|
||||||
+ apply(0, (arg.com[0]=="resize")?arg.i:-arg.i, 0, (arg.com[0]=="resize")?-arg.i:0);
|
|
||||||
+ }
|
|
||||||
+ else if(arg.com[1]=="down"){
|
|
||||||
+ apply(0, (arg.com[0]=="resize")?-arg.i:arg.i, 0, (arg.com[0]=="resize")?arg.i:0);
|
|
||||||
+ }
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
void win_focus(client *c) {
|
|
||||||
cur = c;
|
|
||||||
XSetInputFocus(d, cur->w, RevertToParent, CurrentTime);
|
|
||||||
@@ -130,6 +159,7 @@ void button_press(XEvent *e) {
|
|
||||||
}
|
|
||||||
|
|
||||||
void button_release() {
|
|
||||||
+ win_size(cur->w, &wx, &wy, &ww, &wh);
|
|
||||||
mouse.subwindow = 0;
|
|
||||||
}
|
|
||||||
|
|
@ -1,132 +0,0 @@
|
|||||||
diff -up a/config.def.h b/config.def.h
|
|
||||||
--- a/config.def.h 2019-10-17 19:48:23.000000000 +0300
|
|
||||||
+++ b/config.def.h 2019-10-20 15:12:05.510971991 +0300
|
|
||||||
@@ -32,16 +32,29 @@ static struct key keys[] = {
|
|
||||||
|
|
||||||
{MOD, XK_1, ws_go, {.i = 1}},
|
|
||||||
{MOD|ShiftMask, XK_1, win_to_ws, {.i = 1}},
|
|
||||||
+ {MOD|ControlMask,XK_1,ws_toggle, {.i = 1}},
|
|
||||||
+
|
|
||||||
{MOD, XK_2, ws_go, {.i = 2}},
|
|
||||||
{MOD|ShiftMask, XK_2, win_to_ws, {.i = 2}},
|
|
||||||
+ {MOD|ControlMask,XK_2,ws_toggle, {.i = 2}},
|
|
||||||
+
|
|
||||||
{MOD, XK_3, ws_go, {.i = 3}},
|
|
||||||
{MOD|ShiftMask, XK_3, win_to_ws, {.i = 3}},
|
|
||||||
+ {MOD|ControlMask,XK_3,ws_toggle, {.i = 3}},
|
|
||||||
+
|
|
||||||
{MOD, XK_4, ws_go, {.i = 4}},
|
|
||||||
{MOD|ShiftMask, XK_4, win_to_ws, {.i = 4}},
|
|
||||||
+ {MOD|ControlMask,XK_4,ws_toggle, {.i = 4}},
|
|
||||||
+
|
|
||||||
{MOD, XK_5, ws_go, {.i = 5}},
|
|
||||||
{MOD|ShiftMask, XK_5, win_to_ws, {.i = 5}},
|
|
||||||
+ {MOD|ControlMask,XK_5,ws_toggle, {.i = 5}},
|
|
||||||
+
|
|
||||||
{MOD, XK_6, ws_go, {.i = 6}},
|
|
||||||
{MOD|ShiftMask, XK_6, win_to_ws, {.i = 6}},
|
|
||||||
+ {MOD|ControlMask,XK_6,ws_toggle, {.i = 6}},
|
|
||||||
+
|
|
||||||
+ {MOD, XK_0, ws_toggle_all, {.i = 0}},
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
||||||
Common subdirectories: a/patches and b/patches
|
|
||||||
Only in b/: sowm-almost-tags-0.3.diff
|
|
||||||
diff -up a/sowm.c b/sowm.c
|
|
||||||
--- a/sowm.c 2019-10-17 19:48:23.000000000 +0300
|
|
||||||
+++ b/sowm.c 2019-10-18 19:02:41.959290919 +0300
|
|
||||||
@@ -43,11 +43,14 @@ static void win_prev();
|
|
||||||
static void win_next();
|
|
||||||
static void win_to_ws(const Arg arg);
|
|
||||||
static void ws_go(const Arg arg);
|
|
||||||
+static void ws_toggle(const Arg arg);
|
|
||||||
+static void ws_toggle_all(const Arg arg);
|
|
||||||
static int xerror() { return 0;}
|
|
||||||
|
|
||||||
static client *list = {0}, *ws_list[10] = {0}, *cur;
|
|
||||||
static int ws = 1, sw, sh, wx, wy, numlock;
|
|
||||||
static unsigned int ww, wh;
|
|
||||||
+static int is_ws_enabled[10] = {0}; /* +1 the amount of ws */
|
|
||||||
|
|
||||||
static Display *d;
|
|
||||||
static XButtonEvent mouse;
|
|
||||||
@@ -235,24 +238,68 @@ void win_next() {
|
|
||||||
}
|
|
||||||
|
|
||||||
void ws_go(const Arg arg) {
|
|
||||||
- int tmp = ws;
|
|
||||||
-
|
|
||||||
- if (arg.i == ws) return;
|
|
||||||
-
|
|
||||||
+ int i;
|
|
||||||
+
|
|
||||||
ws_save(ws);
|
|
||||||
- ws_sel(arg.i);
|
|
||||||
|
|
||||||
- for win XMapWindow(d, c->w);
|
|
||||||
-
|
|
||||||
- ws_sel(tmp);
|
|
||||||
-
|
|
||||||
- for win XUnmapWindow(d, c->w);
|
|
||||||
+ for (i = 1; i <= 9; i++) {
|
|
||||||
+ if (i != arg.i) {
|
|
||||||
+ ws_sel(i);
|
|
||||||
+ if (list) for win XUnmapWindow(d, c->w);
|
|
||||||
+ is_ws_enabled[i] = 0;
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
|
|
||||||
ws_sel(arg.i);
|
|
||||||
|
|
||||||
+ if (list) for win XMapWindow(d, c->w);
|
|
||||||
if (list) win_focus(list); else cur = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
+void
|
|
||||||
+ws_toggle(const Arg arg)
|
|
||||||
+{
|
|
||||||
+ int i, tmp = -1;
|
|
||||||
+
|
|
||||||
+ if (arg.i == ws) {
|
|
||||||
+ for (i = 1; i <= 9; i++) {
|
|
||||||
+ if (is_ws_enabled[i] && i != ws) {
|
|
||||||
+ tmp = i;
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ if (tmp > 0)
|
|
||||||
+ ws_sel(tmp);
|
|
||||||
+ else
|
|
||||||
+ return;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ tmp = ws;
|
|
||||||
+
|
|
||||||
+ ws_sel(arg.i);
|
|
||||||
+ if (is_ws_enabled[arg.i]) {
|
|
||||||
+ is_ws_enabled[arg.i] = 0;
|
|
||||||
+ if (list) for win XUnmapWindow(d, c->w);
|
|
||||||
+ } else {
|
|
||||||
+ is_ws_enabled[arg.i] = 1;
|
|
||||||
+ if (list) for win XMapWindow(d, c->w);
|
|
||||||
+ }
|
|
||||||
+ ws_sel(tmp);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+void
|
|
||||||
+ws_toggle_all(const Arg arg)
|
|
||||||
+{
|
|
||||||
+ int i, tmp = ws;
|
|
||||||
+ for (i = 1; i <= 6; i++) {
|
|
||||||
+ ws_sel(i);
|
|
||||||
+ if (list) for win XMapWindow(d, c->w);
|
|
||||||
+ is_ws_enabled[i] = 1;
|
|
||||||
+ }
|
|
||||||
+ ws_sel(tmp);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
void configure_request(XEvent *e) {
|
|
||||||
XConfigureRequestEvent *ev = &e->xconfigurerequest;
|
|
||||||
|
|
@ -1,134 +0,0 @@
|
|||||||
diff -up a/config.def.h b/config.def.h
|
|
||||||
--- a/config.def.h 2019-10-28 23:55:17.000000000 +0200
|
|
||||||
+++ b/config.def.h 2019-11-09 22:30:45.057057111 +0200
|
|
||||||
@@ -32,16 +32,29 @@ static struct key keys[] = {
|
|
||||||
|
|
||||||
{MOD, XK_1, ws_go, {.i = 1}},
|
|
||||||
{MOD|ShiftMask, XK_1, win_to_ws, {.i = 1}},
|
|
||||||
+ {MOD|ControlMask,XK_1,ws_toggle, {.i = 1}},
|
|
||||||
+
|
|
||||||
{MOD, XK_2, ws_go, {.i = 2}},
|
|
||||||
{MOD|ShiftMask, XK_2, win_to_ws, {.i = 2}},
|
|
||||||
+ {MOD|ControlMask,XK_2,ws_toggle, {.i = 2}},
|
|
||||||
+
|
|
||||||
{MOD, XK_3, ws_go, {.i = 3}},
|
|
||||||
{MOD|ShiftMask, XK_3, win_to_ws, {.i = 3}},
|
|
||||||
+ {MOD|ControlMask,XK_3,ws_toggle, {.i = 3}},
|
|
||||||
+
|
|
||||||
{MOD, XK_4, ws_go, {.i = 4}},
|
|
||||||
{MOD|ShiftMask, XK_4, win_to_ws, {.i = 4}},
|
|
||||||
+ {MOD|ControlMask,XK_4,ws_toggle, {.i = 4}},
|
|
||||||
+
|
|
||||||
{MOD, XK_5, ws_go, {.i = 5}},
|
|
||||||
{MOD|ShiftMask, XK_5, win_to_ws, {.i = 5}},
|
|
||||||
+ {MOD|ControlMask,XK_5,ws_toggle, {.i = 5}},
|
|
||||||
+
|
|
||||||
{MOD, XK_6, ws_go, {.i = 6}},
|
|
||||||
{MOD|ShiftMask, XK_6, win_to_ws, {.i = 6}},
|
|
||||||
+ {MOD|ControlMask,XK_6,ws_toggle, {.i = 6}},
|
|
||||||
+
|
|
||||||
+ {MOD, XK_0, ws_toggle_all, {.i = 0}},
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
||||||
Only in b/: config.h
|
|
||||||
Common subdirectories: a/patches and b/patches
|
|
||||||
Only in b/: sowm
|
|
||||||
diff -up a/sowm.c b/sowm.c
|
|
||||||
--- a/sowm.c 2019-10-28 23:55:17.000000000 +0200
|
|
||||||
+++ b/sowm.c 2019-11-09 22:34:10.660379162 +0200
|
|
||||||
@@ -45,11 +45,14 @@ static void win_kill();
|
|
||||||
static void win_next();
|
|
||||||
static void win_to_ws(const Arg arg);
|
|
||||||
static void ws_go(const Arg arg);
|
|
||||||
+static void ws_toggle(const Arg arg);
|
|
||||||
+static void ws_toggle_all(const Arg arg);
|
|
||||||
static int xerror() { return 0;}
|
|
||||||
|
|
||||||
static client *list = {0}, *ws_list[10] = {0}, *cur;
|
|
||||||
static int ws = 1, sw, sh, wx, wy, numlock;
|
|
||||||
static unsigned int ww, wh;
|
|
||||||
+static int is_ws_enabled[10] = {0}; /* +1 the amount of ws */
|
|
||||||
|
|
||||||
static Display *d;
|
|
||||||
static XButtonEvent mouse;
|
|
||||||
@@ -212,24 +215,69 @@ void win_next() {
|
|
||||||
}
|
|
||||||
|
|
||||||
void ws_go(const Arg arg) {
|
|
||||||
- int tmp = ws;
|
|
||||||
-
|
|
||||||
- if (arg.i == ws) return;
|
|
||||||
+ int i;
|
|
||||||
|
|
||||||
ws_save(ws);
|
|
||||||
- ws_sel(arg.i);
|
|
||||||
|
|
||||||
- for win XMapWindow(d, c->w);
|
|
||||||
-
|
|
||||||
- ws_sel(tmp);
|
|
||||||
-
|
|
||||||
- for win XUnmapWindow(d, c->w);
|
|
||||||
+ for (i = 1; i <= 9; i++) {
|
|
||||||
+ if (i != arg.i) {
|
|
||||||
+ ws_sel(i);
|
|
||||||
+ if (list) for win XUnmapWindow(d, c->w);
|
|
||||||
+ is_ws_enabled[i] = 0;
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
|
|
||||||
ws_sel(arg.i);
|
|
||||||
|
|
||||||
+ if (list) for win XMapWindow(d, c->w);
|
|
||||||
if (list) win_focus(list); else cur = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
+void
|
|
||||||
+ws_toggle(const Arg arg)
|
|
||||||
+{
|
|
||||||
+ int i, tmp = -1;
|
|
||||||
+
|
|
||||||
+ if (arg.i == ws) {
|
|
||||||
+ for (i = 1; i <= 9; i++) {
|
|
||||||
+ if (is_ws_enabled[i] && i != ws) {
|
|
||||||
+ tmp = i;
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ if (tmp > 0)
|
|
||||||
+ ws_sel(tmp);
|
|
||||||
+ else
|
|
||||||
+ return;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ tmp = ws;
|
|
||||||
+
|
|
||||||
+ ws_sel(arg.i);
|
|
||||||
+ if (is_ws_enabled[arg.i]) {
|
|
||||||
+ is_ws_enabled[arg.i] = 0;
|
|
||||||
+ if (list) for win XUnmapWindow(d, c->w);
|
|
||||||
+ } else {
|
|
||||||
+ is_ws_enabled[arg.i] = 1;
|
|
||||||
+ if (list) for win XMapWindow(d, c->w);
|
|
||||||
+ }
|
|
||||||
+ ws_sel(tmp);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+void
|
|
||||||
+ws_toggle_all(const Arg arg)
|
|
||||||
+{
|
|
||||||
+ int i, tmp = ws;
|
|
||||||
+ for (i = 1; i <= 6; i++) {
|
|
||||||
+ ws_sel(i);
|
|
||||||
+ if (list) for win XMapWindow(d, c->w);
|
|
||||||
+ is_ws_enabled[i] = 1;
|
|
||||||
+ }
|
|
||||||
+ ws_sel(tmp);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+
|
|
||||||
void configure_request(XEvent *e) {
|
|
||||||
XConfigureRequestEvent *ev = &e->xconfigurerequest;
|
|
||||||
|
|
||||||
Only in b/: sowm.o
|
|
@ -1,184 +0,0 @@
|
|||||||
diff --git a/config.def.h b/config.def.h
|
|
||||||
index cae2009..7e422a9 100644
|
|
||||||
--- a/config.def.h
|
|
||||||
+++ b/config.def.h
|
|
||||||
@@ -3,6 +3,9 @@
|
|
||||||
|
|
||||||
#define MOD Mod4Mask
|
|
||||||
|
|
||||||
+const int handle_bar_thickness = 20;
|
|
||||||
+const char *handlebar_colour = "#ffffff";
|
|
||||||
+
|
|
||||||
const char* menu[] = {"dmenu_run", 0};
|
|
||||||
const char* term[] = {"st", 0};
|
|
||||||
const char* scrot[] = {"scr", 0};
|
|
||||||
diff --git a/sowm.c b/sowm.c
|
|
||||||
index 48222c6..551c8eb 100644
|
|
||||||
--- a/sowm.c
|
|
||||||
+++ b/sowm.c
|
|
||||||
@@ -55,6 +55,10 @@ static unsigned int ww, wh;
|
|
||||||
static Display *d;
|
|
||||||
static XButtonEvent mouse;
|
|
||||||
|
|
||||||
+static Window hb = 0;
|
|
||||||
+static XColor hbc;
|
|
||||||
+static int hba = 0;
|
|
||||||
+
|
|
||||||
static void (*events[LASTEvent])(XEvent *e) = {
|
|
||||||
[ButtonPress] = button_press,
|
|
||||||
[ButtonRelease] = button_release,
|
|
||||||
@@ -77,8 +81,37 @@ static void (*events[LASTEvent])(XEvent *e) = {
|
|
||||||
XGetGeometry(d, W, &(Window){0}, gx, gy, gw, gh, \
|
|
||||||
&(unsigned int){0}, &(unsigned int){0})
|
|
||||||
|
|
||||||
+void configure_hb_for_window(Window w) {
|
|
||||||
+ XWindowAttributes wa;
|
|
||||||
+ XGetWindowAttributes(d, w, &wa);
|
|
||||||
+ if (!hb) {
|
|
||||||
+ int s = DefaultScreen(d);
|
|
||||||
+ hb = XCreateSimpleWindow(d, RootWindow(d, s),
|
|
||||||
+ wa.x, wa.y - handle_bar_thickness,
|
|
||||||
+ wa.width + 2*wa.border_width, handle_bar_thickness,
|
|
||||||
+ 0,
|
|
||||||
+ hbc.pixel, hbc.pixel);
|
|
||||||
+ XMapWindow(d, hb);
|
|
||||||
+ XGrabButton(d, AnyButton, AnyModifier, hb, True,
|
|
||||||
+ ButtonPressMask|ButtonReleaseMask|PointerMotionMask,
|
|
||||||
+ GrabModeAsync, GrabModeAsync, 0, 0);
|
|
||||||
+ } else
|
|
||||||
+ XMoveResizeWindow(d, hb, wa.x, wa.y - handle_bar_thickness,
|
|
||||||
+ wa.width, handle_bar_thickness);
|
|
||||||
+ XRaiseWindow(d, hb);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+void destroy_hb(void) {
|
|
||||||
+ if (!hb) return;
|
|
||||||
+ XUnmapWindow(d, hb);
|
|
||||||
+ XDestroyWindow(d, hb);
|
|
||||||
+ hb = 0;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
void win_focus(client *c) {
|
|
||||||
+ if (hba) return;
|
|
||||||
cur = c;
|
|
||||||
+ configure_hb_for_window(c->w);
|
|
||||||
XSetInputFocus(d, cur->w, RevertToParent, CurrentTime);
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -95,7 +128,22 @@ void notify_enter(XEvent *e) {
|
|
||||||
}
|
|
||||||
|
|
||||||
void notify_motion(XEvent *e) {
|
|
||||||
- if (!mouse.subwindow || cur->f) return;
|
|
||||||
+ if (e->xmotion.window == hb) {
|
|
||||||
+ while(XCheckTypedEvent(d, MotionNotify, e));
|
|
||||||
+
|
|
||||||
+ int xd = e->xbutton.x_root - mouse.x_root;
|
|
||||||
+ int yd = e->xbutton.y_root - mouse.y_root;
|
|
||||||
+
|
|
||||||
+ XMoveResizeWindow(d, cur->w,
|
|
||||||
+ wx + (mouse.button == 1 ? xd : 0),
|
|
||||||
+ wy + (mouse.button == 1 ? yd : 0),
|
|
||||||
+ ww + (mouse.button == 3 ? xd : 0),
|
|
||||||
+ wh + (mouse.button == 3 ? yd : 0));
|
|
||||||
+
|
|
||||||
+ configure_hb_for_window(cur->w);
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ if (!mouse.subwindow || mouse.subwindow == hb || cur->f) return;
|
|
||||||
|
|
||||||
while(XCheckTypedEvent(d, MotionNotify, e));
|
|
||||||
|
|
||||||
@@ -107,6 +155,8 @@ void notify_motion(XEvent *e) {
|
|
||||||
wy + (mouse.button == 1 ? yd : 0),
|
|
||||||
ww + (mouse.button == 3 ? xd : 0),
|
|
||||||
wh + (mouse.button == 3 ? yd : 0));
|
|
||||||
+
|
|
||||||
+ if (mouse.subwindow == cur->w) configure_hb_for_window(cur->w);
|
|
||||||
}
|
|
||||||
|
|
||||||
void key_press(XEvent *e) {
|
|
||||||
@@ -122,6 +172,14 @@ void key_press(XEvent *e) {
|
|
||||||
}
|
|
||||||
|
|
||||||
void button_press(XEvent *e) {
|
|
||||||
+ if (e->xbutton.window == hb) {
|
|
||||||
+ mouse = e->xbutton;
|
|
||||||
+ hba = 1;
|
|
||||||
+ win_size(cur->w, &wx, &wy, &ww, &wh);
|
|
||||||
+ XRaiseWindow(d, cur->w);
|
|
||||||
+ return;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
if (!e->xbutton.subwindow) return;
|
|
||||||
|
|
||||||
win_size(e->xbutton.subwindow, &wx, &wy, &ww, &wh);
|
|
||||||
@@ -131,6 +189,7 @@ void button_press(XEvent *e) {
|
|
||||||
|
|
||||||
void button_release() {
|
|
||||||
mouse.subwindow = 0;
|
|
||||||
+ hba = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void win_add(Window w) {
|
|
||||||
@@ -160,6 +219,8 @@ void win_del(Window w) {
|
|
||||||
|
|
||||||
for win if (c->w == w) x = c;
|
|
||||||
|
|
||||||
+ if (x == cur) destroy_hb();
|
|
||||||
+
|
|
||||||
if (!list || !x) return;
|
|
||||||
if (x->prev == x) list = 0;
|
|
||||||
if (list == x) list = x->next;
|
|
||||||
@@ -180,6 +241,8 @@ void win_center() {
|
|
||||||
win_size(cur->w, &(int){0}, &(int){0}, &ww, &wh);
|
|
||||||
|
|
||||||
XMoveWindow(d, cur->w, (sw - ww) / 2, (sh - wh) / 2);
|
|
||||||
+
|
|
||||||
+ configure_hb_for_window(cur->w);
|
|
||||||
}
|
|
||||||
|
|
||||||
void win_fs() {
|
|
||||||
@@ -188,9 +251,11 @@ void win_fs() {
|
|
||||||
if ((cur->f = cur->f ? 0 : 1)) {
|
|
||||||
win_size(cur->w, &cur->wx, &cur->wy, &cur->ww, &cur->wh);
|
|
||||||
XMoveResizeWindow(d, cur->w, 0, 0, sw, sh);
|
|
||||||
-
|
|
||||||
- } else
|
|
||||||
+ destroy_hb();
|
|
||||||
+ } else {
|
|
||||||
XMoveResizeWindow(d, cur->w, cur->wx, cur->wy, cur->ww, cur->wh);
|
|
||||||
+ configure_hb_for_window(cur->w);
|
|
||||||
+ }
|
|
||||||
}
|
|
||||||
|
|
||||||
void win_to_ws(const Arg arg) {
|
|
||||||
@@ -207,6 +272,8 @@ void win_to_ws(const Arg arg) {
|
|
||||||
XUnmapWindow(d, cur->w);
|
|
||||||
ws_save(tmp);
|
|
||||||
|
|
||||||
+ destroy_hb();
|
|
||||||
+
|
|
||||||
if (list) win_focus(list);
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -240,6 +307,8 @@ void ws_go(const Arg arg) {
|
|
||||||
|
|
||||||
ws_sel(arg.i);
|
|
||||||
|
|
||||||
+ destroy_hb();
|
|
||||||
+
|
|
||||||
if (list) win_focus(list); else cur = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -303,6 +372,10 @@ int main(void) {
|
|
||||||
ButtonPressMask|ButtonReleaseMask|PointerMotionMask,
|
|
||||||
GrabModeAsync, GrabModeAsync, 0, 0);
|
|
||||||
|
|
||||||
+ Colormap cm = DefaultColormap(d, s);
|
|
||||||
+ XParseColor(d, cm, handlebar_colour, &hbc);
|
|
||||||
+ XAllocColor(d, cm, &hbc);
|
|
||||||
+
|
|
||||||
while (1 && !XNextEvent(d, &ev))
|
|
||||||
if (events[ev.type]) events[ev.type](&ev);
|
|
||||||
}
|
|
@ -1,40 +0,0 @@
|
|||||||
diff --git a/sowm.c b/sowm.c
|
|
||||||
index 6b9f794..a5bad10 100644
|
|
||||||
--- a/sowm.c
|
|
||||||
+++ b/sowm.c
|
|
||||||
@@ -28,6 +28,7 @@ typedef struct client {
|
|
||||||
Window w;
|
|
||||||
} client;
|
|
||||||
|
|
||||||
+static void init();
|
|
||||||
static void button_press(XEvent *e);
|
|
||||||
static void button_release();
|
|
||||||
static void configure_request(XEvent *e);
|
|
||||||
@@ -76,6 +77,18 @@ static void (*events[LASTEvent])(XEvent *e) = {
|
|
||||||
XGetGeometry(d, W, &(Window){0}, gx, gy, gw, gh, \
|
|
||||||
&(unsigned int){0}, &(unsigned int){0})
|
|
||||||
|
|
||||||
+void init() {
|
|
||||||
+ Window *child;
|
|
||||||
+ unsigned int nchild;
|
|
||||||
+ XQueryTree(d, RootWindow(d, DefaultScreen(d)), &(Window){0},
|
|
||||||
+ &(Window){0}, &child, &nchild);
|
|
||||||
+ for(unsigned int i = 0; i < nchild; i++) {
|
|
||||||
+ XSelectInput(d, child[i], StructureNotifyMask|EnterWindowMask);
|
|
||||||
+ XMapWindow(d, child[i]);
|
|
||||||
+ win_add(child[i]);
|
|
||||||
+ }
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
void win_focus(client *c) {
|
|
||||||
cur = c;
|
|
||||||
XSetInputFocus(d, cur->w, RevertToParent, CurrentTime);
|
|
||||||
@@ -290,6 +303,8 @@ int main(void) {
|
|
||||||
XSelectInput(d, root, SubstructureRedirectMask);
|
|
||||||
XDefineCursor(d, root, XCreateFontCursor(d, 68));
|
|
||||||
|
|
||||||
+ init();
|
|
||||||
+
|
|
||||||
for (unsigned int i=0; i < sizeof(keys)/sizeof(*keys); ++i)
|
|
||||||
XGrabKey(d, XKeysymToKeycode(d, keys[i].keysym), keys[i].mod,
|
|
||||||
root, True, GrabModeAsync, GrabModeAsync);
|
|
@ -1,23 +0,0 @@
|
|||||||
diff --git a/sowm.c b/sowm.c
|
|
||||||
index d1b4c2a..49d8af2 100644
|
|
||||||
--- a/sowm.c
|
|
||||||
+++ b/sowm.c
|
|
||||||
@@ -165,7 +165,17 @@ void win_del(Window w) {
|
|
||||||
}
|
|
||||||
|
|
||||||
void win_kill() {
|
|
||||||
- if (cur) XKillClient(d, cur->w);
|
|
||||||
+ if (!cur) return;
|
|
||||||
+
|
|
||||||
+ XEvent ev = { .type = ClientMessage };
|
|
||||||
+
|
|
||||||
+ ev.xclient.window = cur->w;
|
|
||||||
+ ev.xclient.format = 32;
|
|
||||||
+ ev.xclient.message_type = XInternAtom(d, "WM_PROTOCOLS", True);
|
|
||||||
+ ev.xclient.data.l[0] = XInternAtom(d, "WM_DELETE_WINDOW", True);
|
|
||||||
+ ev.xclient.data.l[1] = CurrentTime;
|
|
||||||
+
|
|
||||||
+ XSendEvent(d, cur->w, False, NoEventMask, &ev);
|
|
||||||
}
|
|
||||||
|
|
||||||
void win_center() {
|
|
@ -1,88 +0,0 @@
|
|||||||
diff --git a/Makefile b/Makefile
|
|
||||||
index 8573837..72e9542 100644
|
|
||||||
--- a/Makefile
|
|
||||||
+++ b/Makefile
|
|
||||||
@@ -1,5 +1,5 @@
|
|
||||||
CFLAGS+= -std=c99 -Wall -Wextra -Wmissing-prototypes -pedantic
|
|
||||||
-LDADD+= -lX11
|
|
||||||
+LDADD+= -lX11 -lXinerama
|
|
||||||
LDFLAGS=
|
|
||||||
PREFIX?= /usr
|
|
||||||
BINDIR?= $(PREFIX)/bin
|
|
||||||
diff --git a/sowm.c b/sowm.c
|
|
||||||
index 0cc1293..6f858a9 100644
|
|
||||||
--- a/sowm.c
|
|
||||||
+++ b/sowm.c
|
|
||||||
@@ -4,6 +4,7 @@
|
|
||||||
#include <X11/XF86keysym.h>
|
|
||||||
#include <X11/keysym.h>
|
|
||||||
#include <X11/XKBlib.h>
|
|
||||||
+#include <X11/extensions/Xinerama.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <signal.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
@@ -48,7 +49,7 @@ static void ws_go(const Arg arg);
|
|
||||||
static int xerror() { return 0;}
|
|
||||||
|
|
||||||
static client *list = {0}, *ws_list[10] = {0}, *cur;
|
|
||||||
-static int ws = 1, sw, sh, wx, wy, numlock;
|
|
||||||
+static int ws = 1, sw, sh, wx, wy, numlock, monitors;
|
|
||||||
static unsigned int ww, wh;
|
|
||||||
|
|
||||||
static Display *d;
|
|
||||||
@@ -108,6 +109,7 @@ void notify_motion(XEvent *e) {
|
|
||||||
wy + (mouse.button == 1 ? yd : 0),
|
|
||||||
ww + (mouse.button == 3 ? xd : 0),
|
|
||||||
wh + (mouse.button == 3 ? yd : 0));
|
|
||||||
+ win_size(cur->w, &cur->wx, &cur->wy, &cur->ww, &cur->wh);
|
|
||||||
}
|
|
||||||
|
|
||||||
void key_press(XEvent *e) {
|
|
||||||
@@ -172,12 +174,35 @@ void win_kill() {
|
|
||||||
if (cur) XKillClient(d, cur->w);
|
|
||||||
}
|
|
||||||
|
|
||||||
+int multimonitor_center_fs (int fs) {
|
|
||||||
+ if (!XineramaIsActive(d)) return 1;
|
|
||||||
+ XineramaScreenInfo *screen_info = XineramaQueryScreens(d, &monitors);
|
|
||||||
+ for (int i = 0; i < monitors; i++) {
|
|
||||||
+ if ((cur->wx >= screen_info[i].x_org && cur->wx < screen_info[i].x_org + screen_info[i].width)
|
|
||||||
+ && (cur->wy >= screen_info[i].y_org && cur->wy < screen_info[i].y_org + screen_info[i].height)) {
|
|
||||||
+ if (fs)
|
|
||||||
+ XMoveResizeWindow(d, cur->w,
|
|
||||||
+ screen_info[i].x_org, screen_info[i].y_org,
|
|
||||||
+ screen_info[i].width, screen_info[i].height);
|
|
||||||
+ else
|
|
||||||
+ XMoveWindow(d, cur->w,
|
|
||||||
+ screen_info[i].x_org + ((screen_info[i].width - ww) / 2),
|
|
||||||
+ screen_info[i].y_org + ((screen_info[i].height - wh) / 2));
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+ return 0;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
void win_center() {
|
|
||||||
if (!cur) return;
|
|
||||||
|
|
||||||
win_size(cur->w, &(int){0}, &(int){0}, &ww, &wh);
|
|
||||||
|
|
||||||
- XMoveWindow(d, cur->w, (sw - ww) / 2, (sh - wh) / 2);
|
|
||||||
+ if (multimonitor_center_fs(0))
|
|
||||||
+ XMoveWindow(d, cur->w, (sw - ww) / 2, (sh - wh) / 2);
|
|
||||||
+
|
|
||||||
+ win_size(cur->w, &cur->wx, &cur->wy, &cur->ww, &cur->wh);
|
|
||||||
}
|
|
||||||
|
|
||||||
void win_fs() {
|
|
||||||
@@ -185,8 +210,8 @@ void win_fs() {
|
|
||||||
|
|
||||||
if ((cur->f = cur->f ? 0 : 1)) {
|
|
||||||
win_size(cur->w, &cur->wx, &cur->wy, &cur->ww, &cur->wh);
|
|
||||||
- XMoveResizeWindow(d, cur->w, 0, 0, sw, sh);
|
|
||||||
-
|
|
||||||
+ if(multimonitor_center_fs(1))
|
|
||||||
+ XMoveResizeWindow(d, cur->w, 0, 0, sw, sh);
|
|
||||||
} else
|
|
||||||
XMoveResizeWindow(d, cur->w, cur->wx, cur->wy, cur->ww, cur->wh);
|
|
||||||
}
|
|
@ -1,117 +0,0 @@
|
|||||||
diff --git a/sowm.c b/sowm.c
|
|
||||||
index bc14c4e..4ae3a8f 100644
|
|
||||||
--- a/sowm.c
|
|
||||||
+++ b/sowm.c
|
|
||||||
@@ -65,6 +65,9 @@ static void (*events[LASTEvent])(XEvent *e) = {
|
|
||||||
[MotionNotify] = notify_motion
|
|
||||||
};
|
|
||||||
|
|
||||||
+
|
|
||||||
+Window WaitingWindow;
|
|
||||||
+
|
|
||||||
#include "config.h"
|
|
||||||
|
|
||||||
#define win (client *t=0, *c=list; c && t!=list->prev; t=c, c=c->next)
|
|
||||||
@@ -75,6 +78,23 @@ static void (*events[LASTEvent])(XEvent *e) = {
|
|
||||||
XGetGeometry(d, W, &(Window){0}, gx, gy, gw, gh, \
|
|
||||||
&(unsigned int){0}, &(unsigned int){0})
|
|
||||||
|
|
||||||
+#define ABS(N) (((N)<0)?-(N):(N))
|
|
||||||
+
|
|
||||||
+void draw_outline(int x1, int y1, int x2, int y2) {
|
|
||||||
+ XClearWindow(d, RootWindow(d, DefaultScreen(d)));
|
|
||||||
+
|
|
||||||
+ GC gc = XCreateGC(d, RootWindow(d, DefaultScreen(d)), 0, NULL);
|
|
||||||
+ if(!gc)return;
|
|
||||||
+
|
|
||||||
+ XSetForeground(d, gc, WhitePixel(d, DefaultScreen(d)));
|
|
||||||
+ XDrawLine(d, RootWindow(d, DefaultScreen(d)), gc, x1, y1, x1, y2);
|
|
||||||
+ XDrawLine(d, RootWindow(d, DefaultScreen(d)), gc, x1, y1, x2, y1);
|
|
||||||
+ XDrawLine(d, RootWindow(d, DefaultScreen(d)), gc, x1, y2, x2, y2);
|
|
||||||
+ XDrawLine(d, RootWindow(d, DefaultScreen(d)), gc, x2, y1, x2, y2);
|
|
||||||
+ XFreeGC(d, gc);
|
|
||||||
+ XFlush(d);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
void win_focus(client *c) {
|
|
||||||
cur = c;
|
|
||||||
XSetInputFocus(d, cur->w, RevertToParent, CurrentTime);
|
|
||||||
@@ -93,7 +113,10 @@ void notify_enter(XEvent *e) {
|
|
||||||
}
|
|
||||||
|
|
||||||
void notify_motion(XEvent *e) {
|
|
||||||
- if (!mouse.subwindow || cur->f) return;
|
|
||||||
+ if (!mouse.subwindow || cur->f) {
|
|
||||||
+ draw_outline(mouse.x_root, mouse.y_root, e->xbutton.x_root, e->xbutton.y_root);
|
|
||||||
+ return;
|
|
||||||
+ }
|
|
||||||
|
|
||||||
while(XCheckTypedEvent(d, MotionNotify, e));
|
|
||||||
|
|
||||||
@@ -116,15 +139,43 @@ void key_press(XEvent *e) {
|
|
||||||
}
|
|
||||||
|
|
||||||
void button_press(XEvent *e) {
|
|
||||||
- if (!e->xbutton.subwindow) return;
|
|
||||||
+ mouse = e->xbutton;
|
|
||||||
|
|
||||||
+ if (!e->xbutton.subwindow) return;
|
|
||||||
win_size(e->xbutton.subwindow, &wx, &wy, &ww, &wh);
|
|
||||||
XRaiseWindow(d, e->xbutton.subwindow);
|
|
||||||
- mouse = e->xbutton;
|
|
||||||
}
|
|
||||||
|
|
||||||
-void button_release() {
|
|
||||||
- mouse.subwindow = 0;
|
|
||||||
+void button_release(XEvent *e) {
|
|
||||||
+ XClearWindow(d, RootWindow(d, DefaultScreen(d)));
|
|
||||||
+
|
|
||||||
+ if(WaitingWindow){
|
|
||||||
+ XSelectInput(d, WaitingWindow, StructureNotifyMask|EnterWindowMask);
|
|
||||||
+ win_size(WaitingWindow, &wx, &wy, &ww, &wh);
|
|
||||||
+ win_add(WaitingWindow);
|
|
||||||
+ cur = list->prev;
|
|
||||||
+
|
|
||||||
+ XMoveResizeWindow(d, cur->w,
|
|
||||||
+ e->xbutton.x_root > mouse.x_root ? mouse.x_root : e->xbutton.x_root,
|
|
||||||
+ e->xbutton.y_root > mouse.y_root ? mouse.y_root : e->xbutton.y_root,
|
|
||||||
+ ABS(mouse.x_root - e->xbutton.x_root),
|
|
||||||
+ ABS(mouse.y_root - e->xbutton.y_root));
|
|
||||||
+
|
|
||||||
+ XMapWindow(d, WaitingWindow);
|
|
||||||
+ win_focus(list->prev);
|
|
||||||
+
|
|
||||||
+ WaitingWindow = 0;
|
|
||||||
+
|
|
||||||
+ } else if(!mouse.subwindow && cur) {
|
|
||||||
+
|
|
||||||
+ XMoveResizeWindow(d, cur->w,
|
|
||||||
+ e->xbutton.x_root > mouse.x_root ? mouse.x_root : e->xbutton.x_root,
|
|
||||||
+ e->xbutton.y_root > mouse.y_root ? mouse.y_root : e->xbutton.y_root,
|
|
||||||
+ ABS(mouse.x_root - e->xbutton.x_root),
|
|
||||||
+ ABS(mouse.y_root - e->xbutton.y_root));
|
|
||||||
+
|
|
||||||
+ mouse.subwindow = 0;
|
|
||||||
+ }
|
|
||||||
}
|
|
||||||
|
|
||||||
void win_add(Window w) {
|
|
||||||
@@ -244,17 +295,7 @@ void configure_request(XEvent *e) {
|
|
||||||
}
|
|
||||||
|
|
||||||
void map_request(XEvent *e) {
|
|
||||||
- Window w = e->xmaprequest.window;
|
|
||||||
-
|
|
||||||
- XSelectInput(d, w, StructureNotifyMask|EnterWindowMask);
|
|
||||||
- win_size(w, &wx, &wy, &ww, &wh);
|
|
||||||
- win_add(w);
|
|
||||||
- cur = list->prev;
|
|
||||||
-
|
|
||||||
- if (wx + wy == 0) win_center();
|
|
||||||
-
|
|
||||||
- XMapWindow(d, w);
|
|
||||||
- win_focus(list->prev);
|
|
||||||
+ WaitingWindow = e->xmaprequest.window;
|
|
||||||
}
|
|
||||||
|
|
||||||
void run(const Arg arg) {
|
|
@ -1,112 +0,0 @@
|
|||||||
diff --git a/Makefile b/Makefile
|
|
||||||
index 8573837..738af94 100644
|
|
||||||
--- a/Makefile
|
|
||||||
+++ b/Makefile
|
|
||||||
@@ -1,5 +1,5 @@
|
|
||||||
CFLAGS+= -std=c99 -Wall -Wextra -Wmissing-prototypes -pedantic
|
|
||||||
-LDADD+= -lX11
|
|
||||||
+LDADD+= -lX11 -lXext
|
|
||||||
LDFLAGS=
|
|
||||||
PREFIX?= /usr
|
|
||||||
BINDIR?= $(PREFIX)/bin
|
|
||||||
diff --git a/config.def.h b/config.def.h
|
|
||||||
index aaaf38d..b25dc08 100644
|
|
||||||
--- a/config.def.h
|
|
||||||
+++ b/config.def.h
|
|
||||||
@@ -2,6 +2,7 @@
|
|
||||||
#define CONFIG_H
|
|
||||||
|
|
||||||
#define MOD Mod4Mask
|
|
||||||
+#define ROUND_CORNERS 20
|
|
||||||
|
|
||||||
const char* menu[] = {"dmenu_run", 0};
|
|
||||||
const char* term[] = {"st", 0};
|
|
||||||
diff --git a/sowm.c b/sowm.c
|
|
||||||
index d1b4c2a..56bf509 100644
|
|
||||||
--- a/sowm.c
|
|
||||||
+++ b/sowm.c
|
|
||||||
@@ -4,6 +4,7 @@
|
|
||||||
#include <X11/XF86keysym.h>
|
|
||||||
#include <X11/keysym.h>
|
|
||||||
#include <X11/XKBlib.h>
|
|
||||||
+#include <X11/extensions/shape.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <signal.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
@@ -43,6 +44,7 @@ static void win_del(Window w);
|
|
||||||
static void win_kill();
|
|
||||||
static void win_prev();
|
|
||||||
static void win_next();
|
|
||||||
+static void win_round_corners(Window w, int rad);
|
|
||||||
static void win_to_ws(const Arg arg);
|
|
||||||
static void ws_go(const Arg arg);
|
|
||||||
static int xerror() { return 0;}
|
|
||||||
@@ -105,6 +107,9 @@ void notify_motion(XEvent *e) {
|
|
||||||
wy + (mouse.button == 1 ? yd : 0),
|
|
||||||
ww + (mouse.button == 3 ? xd : 0),
|
|
||||||
wh + (mouse.button == 3 ? yd : 0));
|
|
||||||
+
|
|
||||||
+ if (mouse.button == 3)
|
|
||||||
+ win_round_corners(mouse.subwindow, ROUND_CORNERS);
|
|
||||||
}
|
|
||||||
|
|
||||||
void key_press(XEvent *e) {
|
|
||||||
@@ -185,6 +190,41 @@ void win_fs() {
|
|
||||||
|
|
||||||
} else
|
|
||||||
XMoveResizeWindow(d, cur->w, cur->wx, cur->wy, cur->ww, cur->wh);
|
|
||||||
+
|
|
||||||
+ win_round_corners(cur->w, cur->f ? 0 : ROUND_CORNERS);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+void win_round_corners(Window w, int rad) {
|
|
||||||
+ unsigned int ww, wh, dia = 2 * rad;
|
|
||||||
+
|
|
||||||
+ win_size(w, &(int){1}, &(int){1}, &ww, &wh);
|
|
||||||
+
|
|
||||||
+ if (ww < dia || wh < dia) return;
|
|
||||||
+
|
|
||||||
+ Pixmap mask = XCreatePixmap(d, w, ww, wh, 1);
|
|
||||||
+
|
|
||||||
+ if (!mask) return;
|
|
||||||
+
|
|
||||||
+ XGCValues xgcv;
|
|
||||||
+ GC shape_gc = XCreateGC(d, mask, 0, &xgcv);
|
|
||||||
+
|
|
||||||
+ if (!shape_gc) {
|
|
||||||
+ XFreePixmap(d, mask);
|
|
||||||
+ return;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ XSetForeground(d, shape_gc, 0);
|
|
||||||
+ XFillRectangle(d, mask, shape_gc, 0, 0, ww, wh);
|
|
||||||
+ XSetForeground(d, shape_gc, 1);
|
|
||||||
+ XFillArc(d, mask, shape_gc, 0, 0, dia, dia, 0, 23040);
|
|
||||||
+ XFillArc(d, mask, shape_gc, ww-dia-1, 0, dia, dia, 0, 23040);
|
|
||||||
+ XFillArc(d, mask, shape_gc, 0, wh-dia-1, dia, dia, 0, 23040);
|
|
||||||
+ XFillArc(d, mask, shape_gc, ww-dia-1, wh-dia-1, dia, dia, 0, 23040);
|
|
||||||
+ XFillRectangle(d, mask, shape_gc, rad, 0, ww-dia, wh);
|
|
||||||
+ XFillRectangle(d, mask, shape_gc, 0, rad, ww, wh-dia);
|
|
||||||
+ XShapeCombineMask(d, w, ShapeBounding, 0, 0, mask, ShapeSet);
|
|
||||||
+ XFreePixmap(d, mask);
|
|
||||||
+ XFreeGC(d, shape_gc);
|
|
||||||
}
|
|
||||||
|
|
||||||
void win_to_ws(const Arg arg) {
|
|
||||||
@@ -241,6 +281,8 @@ void configure_request(XEvent *e) {
|
|
||||||
.sibling = ev->above,
|
|
||||||
.stack_mode = ev->detail
|
|
||||||
});
|
|
||||||
+
|
|
||||||
+ win_round_corners(ev->window, ROUND_CORNERS);
|
|
||||||
}
|
|
||||||
|
|
||||||
void map_request(XEvent *e) {
|
|
||||||
@@ -253,6 +295,7 @@ void map_request(XEvent *e) {
|
|
||||||
|
|
||||||
if (wx + wy == 0) win_center();
|
|
||||||
|
|
||||||
+ win_round_corners(w, ROUND_CORNERS);
|
|
||||||
XMapWindow(d, w);
|
|
||||||
win_focus(list->prev);
|
|
||||||
}
|
|
@ -1,43 +0,0 @@
|
|||||||
diff --git a/config.def.h b/config.def.h
|
|
||||||
index aaaf38d..5a95d71 100644
|
|
||||||
--- a/config.def.h
|
|
||||||
+++ b/config.def.h
|
|
||||||
@@ -2,6 +2,7 @@
|
|
||||||
#define CONFIG_H
|
|
||||||
|
|
||||||
#define MOD Mod4Mask
|
|
||||||
+#define WheelResizeStep 5
|
|
||||||
|
|
||||||
const char* menu[] = {"dmenu_run", 0};
|
|
||||||
const char* term[] = {"st", 0};
|
|
||||||
diff --git a/sowm.c b/sowm.c
|
|
||||||
index bc14c4e..3b95c28 100644
|
|
||||||
--- a/sowm.c
|
|
||||||
+++ b/sowm.c
|
|
||||||
@@ -120,6 +120,17 @@ void button_press(XEvent *e) {
|
|
||||||
|
|
||||||
win_size(e->xbutton.subwindow, &wx, &wy, &ww, &wh);
|
|
||||||
XRaiseWindow(d, e->xbutton.subwindow);
|
|
||||||
+
|
|
||||||
+ int sd = 0;
|
|
||||||
+ if(e->xbutton.button == Button4) sd = WheelResizeStep;
|
|
||||||
+ else if(e->xbutton.button == Button5) sd = -WheelResizeStep;
|
|
||||||
+
|
|
||||||
+ XMoveResizeWindow(d, e->xbutton.subwindow,
|
|
||||||
+ wx - sd,
|
|
||||||
+ wy - sd,
|
|
||||||
+ ww + sd*2,
|
|
||||||
+ wh + sd*2);
|
|
||||||
+
|
|
||||||
mouse = e->xbutton;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -285,7 +296,7 @@ int main(void) {
|
|
||||||
XGrabKey(d, XKeysymToKeycode(d, keys[i].keysym), keys[i].mod,
|
|
||||||
root, True, GrabModeAsync, GrabModeAsync);
|
|
||||||
|
|
||||||
- for (int i=1; i<4; i+=2)
|
|
||||||
+ for (int i=1; i<6; i++)
|
|
||||||
XGrabButton(d, i, MOD, root, True,
|
|
||||||
ButtonPressMask|ButtonReleaseMask|PointerMotionMask,
|
|
||||||
GrabModeAsync, GrabModeAsync, 0, 0);
|
|
95
sowm.c
95
sowm.c
@ -8,45 +8,7 @@
|
|||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
typedef union {
|
#include "sowm.h"
|
||||||
const char** com;
|
|
||||||
const int i;
|
|
||||||
const Window w;
|
|
||||||
} Arg;
|
|
||||||
|
|
||||||
struct key {
|
|
||||||
unsigned int mod;
|
|
||||||
KeySym keysym;
|
|
||||||
void (*function)(const Arg arg);
|
|
||||||
const Arg arg;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct client {
|
|
||||||
struct client *next, *prev;
|
|
||||||
int f, wx, wy;
|
|
||||||
unsigned int ww, wh;
|
|
||||||
Window w;
|
|
||||||
} client;
|
|
||||||
|
|
||||||
static void button_press(XEvent *e);
|
|
||||||
static void button_release();
|
|
||||||
static void configure_request(XEvent *e);
|
|
||||||
static void key_press(XEvent *e);
|
|
||||||
static void map_request(XEvent *e);
|
|
||||||
static void notify_destroy(XEvent *e);
|
|
||||||
static void notify_enter(XEvent *e);
|
|
||||||
static void notify_motion(XEvent *e);
|
|
||||||
static void run(const Arg arg);
|
|
||||||
static void win_add(Window w);
|
|
||||||
static void win_center();
|
|
||||||
static void win_del(Window w);
|
|
||||||
static void win_fs();
|
|
||||||
static void win_kill();
|
|
||||||
static void win_prev();
|
|
||||||
static void win_next();
|
|
||||||
static void win_to_ws(const Arg arg);
|
|
||||||
static void ws_go(const Arg arg);
|
|
||||||
static int xerror() { return 0;}
|
|
||||||
|
|
||||||
static client *list = {0}, *ws_list[10] = {0}, *cur;
|
static client *list = {0}, *ws_list[10] = {0}, *cur;
|
||||||
static int ws = 1, sw, sh, wx, wy, numlock = 0;
|
static int ws = 1, sw, sh, wx, wy, numlock = 0;
|
||||||
@ -54,6 +16,7 @@ static unsigned int ww, wh;
|
|||||||
|
|
||||||
static Display *d;
|
static Display *d;
|
||||||
static XButtonEvent mouse;
|
static XButtonEvent mouse;
|
||||||
|
static Window root;
|
||||||
|
|
||||||
static void (*events[LASTEvent])(XEvent *e) = {
|
static void (*events[LASTEvent])(XEvent *e) = {
|
||||||
[ButtonPress] = button_press,
|
[ButtonPress] = button_press,
|
||||||
@ -61,6 +24,7 @@ static void (*events[LASTEvent])(XEvent *e) = {
|
|||||||
[ConfigureRequest] = configure_request,
|
[ConfigureRequest] = configure_request,
|
||||||
[KeyPress] = key_press,
|
[KeyPress] = key_press,
|
||||||
[MapRequest] = map_request,
|
[MapRequest] = map_request,
|
||||||
|
[MappingNotify] = mapping_notify,
|
||||||
[DestroyNotify] = notify_destroy,
|
[DestroyNotify] = notify_destroy,
|
||||||
[EnterNotify] = notify_enter,
|
[EnterNotify] = notify_enter,
|
||||||
[MotionNotify] = notify_motion
|
[MotionNotify] = notify_motion
|
||||||
@ -68,18 +32,6 @@ static void (*events[LASTEvent])(XEvent *e) = {
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#define win (client *t=0, *c=list; c && t!=list->prev; t=c, c=c->next)
|
|
||||||
#define ws_save(W) ws_list[W] = list
|
|
||||||
#define ws_sel(W) list = ws_list[ws = W]
|
|
||||||
|
|
||||||
#define win_size(W, gx, gy, gw, gh) \
|
|
||||||
XGetGeometry(d, W, &(Window){0}, gx, gy, gw, gh, \
|
|
||||||
&(unsigned int){0}, &(unsigned int){0})
|
|
||||||
|
|
||||||
// Taken from DWM. Many thanks. https://git.suckless.org/dwm
|
|
||||||
#define mod_clean(mask) (mask & ~(numlock|LockMask) & \
|
|
||||||
(ShiftMask|ControlMask|Mod1Mask|Mod2Mask|Mod3Mask|Mod4Mask|Mod5Mask))
|
|
||||||
|
|
||||||
void win_focus(client *c) {
|
void win_focus(client *c) {
|
||||||
cur = c;
|
cur = c;
|
||||||
XSetInputFocus(d, cur->w, RevertToParent, CurrentTime);
|
XSetInputFocus(d, cur->w, RevertToParent, CurrentTime);
|
||||||
@ -108,8 +60,8 @@ void notify_motion(XEvent *e) {
|
|||||||
XMoveResizeWindow(d, mouse.subwindow,
|
XMoveResizeWindow(d, mouse.subwindow,
|
||||||
wx + (mouse.button == 1 ? xd : 0),
|
wx + (mouse.button == 1 ? xd : 0),
|
||||||
wy + (mouse.button == 1 ? yd : 0),
|
wy + (mouse.button == 1 ? yd : 0),
|
||||||
ww + (mouse.button == 3 ? xd : 0),
|
MAX(1, ww + (mouse.button == 3 ? xd : 0)),
|
||||||
wh + (mouse.button == 3 ? yd : 0));
|
MAX(1, wh + (mouse.button == 3 ? yd : 0)));
|
||||||
}
|
}
|
||||||
|
|
||||||
void key_press(XEvent *e) {
|
void key_press(XEvent *e) {
|
||||||
@ -129,7 +81,7 @@ void button_press(XEvent *e) {
|
|||||||
mouse = e->xbutton;
|
mouse = e->xbutton;
|
||||||
}
|
}
|
||||||
|
|
||||||
void button_release() {
|
void button_release(XEvent *e) {
|
||||||
mouse.subwindow = 0;
|
mouse.subwindow = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -170,28 +122,28 @@ void win_del(Window w) {
|
|||||||
ws_save(ws);
|
ws_save(ws);
|
||||||
}
|
}
|
||||||
|
|
||||||
void win_kill() {
|
void win_kill(const Arg arg) {
|
||||||
if (cur) XKillClient(d, cur->w);
|
if (cur) XKillClient(d, cur->w);
|
||||||
}
|
}
|
||||||
|
|
||||||
void win_center() {
|
void win_center(const Arg arg) {
|
||||||
if (!cur) return;
|
if (!cur) return;
|
||||||
|
|
||||||
win_size(cur->w, &(int){0}, &(int){0}, &ww, &wh);
|
win_size(cur->w, &(int){0}, &(int){0}, &ww, &wh);
|
||||||
|
|
||||||
XMoveWindow(d, cur->w, (sw - ww) / 2, (sh - wh) / 2);
|
XMoveWindow(d, cur->w, (sw - ww) / 2, (sh - wh) / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
void win_fs() {
|
void win_fs(const Arg arg) {
|
||||||
if (!cur) return;
|
if (!cur) return;
|
||||||
|
|
||||||
if ((cur->f = cur->f ? 0 : 1)) {
|
if ((cur->f = cur->f ? 0 : 1)) {
|
||||||
win_size(cur->w, &cur->wx, &cur->wy, &cur->ww, &cur->wh);
|
win_size(cur->w, &cur->wx, &cur->wy, &cur->ww, &cur->wh);
|
||||||
XMoveResizeWindow(d, cur->w, 0, 0, sw, sh);
|
XMoveResizeWindow(d, cur->w, 0, 0, sw, sh);
|
||||||
|
|
||||||
} else
|
} else {
|
||||||
XMoveResizeWindow(d, cur->w, cur->wx, cur->wy, cur->ww, cur->wh);
|
XMoveResizeWindow(d, cur->w, cur->wx, cur->wy, cur->ww, cur->wh);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void win_to_ws(const Arg arg) {
|
void win_to_ws(const Arg arg) {
|
||||||
int tmp = ws;
|
int tmp = ws;
|
||||||
@ -210,14 +162,14 @@ void win_to_ws(const Arg arg) {
|
|||||||
if (list) win_focus(list);
|
if (list) win_focus(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
void win_prev() {
|
void win_prev(const Arg arg) {
|
||||||
if (!cur) return;
|
if (!cur) return;
|
||||||
|
|
||||||
XRaiseWindow(d, cur->prev->w);
|
XRaiseWindow(d, cur->prev->w);
|
||||||
win_focus(cur->prev);
|
win_focus(cur->prev);
|
||||||
}
|
}
|
||||||
|
|
||||||
void win_next() {
|
void win_next(const Arg arg) {
|
||||||
if (!cur) return;
|
if (!cur) return;
|
||||||
|
|
||||||
XRaiseWindow(d, cur->next->w);
|
XRaiseWindow(d, cur->next->w);
|
||||||
@ -264,12 +216,21 @@ void map_request(XEvent *e) {
|
|||||||
win_add(w);
|
win_add(w);
|
||||||
cur = list->prev;
|
cur = list->prev;
|
||||||
|
|
||||||
if (wx + wy == 0) win_center();
|
if (wx + wy == 0) win_center((Arg){0});
|
||||||
|
|
||||||
XMapWindow(d, w);
|
XMapWindow(d, w);
|
||||||
win_focus(list->prev);
|
win_focus(list->prev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void mapping_notify(XEvent *e) {
|
||||||
|
XMappingEvent *ev = &e->xmapping;
|
||||||
|
|
||||||
|
if (ev->request == MappingKeyboard || ev->request == MappingModifier) {
|
||||||
|
XRefreshKeyboardMapping(ev);
|
||||||
|
input_grab(root);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void run(const Arg arg) {
|
void run(const Arg arg) {
|
||||||
if (fork()) return;
|
if (fork()) return;
|
||||||
if (d) close(ConnectionNumber(d));
|
if (d) close(ConnectionNumber(d));
|
||||||
@ -284,11 +245,13 @@ void input_grab(Window root) {
|
|||||||
KeyCode code;
|
KeyCode code;
|
||||||
|
|
||||||
for (i = 0; i < 8; i++)
|
for (i = 0; i < 8; i++)
|
||||||
for (j=0; j < modmap->max_keypermod; j++)
|
for (int k = 0; k < modmap->max_keypermod; k++)
|
||||||
if (modmap->modifiermap[i * modmap->max_keypermod + j]
|
if (modmap->modifiermap[i * modmap->max_keypermod + k]
|
||||||
== XKeysymToKeycode(d, 0xff7f))
|
== XKeysymToKeycode(d, 0xff7f))
|
||||||
numlock = (1 << i);
|
numlock = (1 << i);
|
||||||
|
|
||||||
|
XUngrabKey(d, AnyKey, AnyModifier, root);
|
||||||
|
|
||||||
for (i = 0; i < sizeof(keys)/sizeof(*keys); i++)
|
for (i = 0; i < sizeof(keys)/sizeof(*keys); i++)
|
||||||
if ((code = XKeysymToKeycode(d, keys[i].keysym)))
|
if ((code = XKeysymToKeycode(d, keys[i].keysym)))
|
||||||
for (j = 0; j < sizeof(modifiers)/sizeof(*modifiers); j++)
|
for (j = 0; j < sizeof(modifiers)/sizeof(*modifiers); j++)
|
||||||
@ -313,7 +276,7 @@ int main(void) {
|
|||||||
XSetErrorHandler(xerror);
|
XSetErrorHandler(xerror);
|
||||||
|
|
||||||
int s = DefaultScreen(d);
|
int s = DefaultScreen(d);
|
||||||
Window root = RootWindow(d, s);
|
root = RootWindow(d, s);
|
||||||
sw = XDisplayWidth(d, s);
|
sw = XDisplayWidth(d, s);
|
||||||
sh = XDisplayHeight(d, s);
|
sh = XDisplayHeight(d, s);
|
||||||
|
|
||||||
@ -321,6 +284,6 @@ int main(void) {
|
|||||||
XDefineCursor(d, root, XCreateFontCursor(d, 68));
|
XDefineCursor(d, root, XCreateFontCursor(d, 68));
|
||||||
input_grab(root);
|
input_grab(root);
|
||||||
|
|
||||||
while (1 && !XNextEvent(d, &ev))
|
while (1 && !XNextEvent(d, &ev)) // 1 && will forever be here.
|
||||||
if (events[ev.type]) events[ev.type](&ev);
|
if (events[ev.type]) events[ev.type](&ev);
|
||||||
}
|
}
|
||||||
|
58
sowm.h
Normal file
58
sowm.h
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
#include <X11/Xlib.h>
|
||||||
|
|
||||||
|
#define win (client *t=0, *c=list; c && t!=list->prev; t=c, c=c->next)
|
||||||
|
#define ws_save(W) ws_list[W] = list
|
||||||
|
#define ws_sel(W) list = ws_list[ws = W]
|
||||||
|
#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
||||||
|
|
||||||
|
#define win_size(W, gx, gy, gw, gh) \
|
||||||
|
XGetGeometry(d, W, &(Window){0}, gx, gy, gw, gh, \
|
||||||
|
&(unsigned int){0}, &(unsigned int){0})
|
||||||
|
|
||||||
|
// Taken from DWM. Many thanks. https://git.suckless.org/dwm
|
||||||
|
#define mod_clean(mask) (mask & ~(numlock|LockMask) & \
|
||||||
|
(ShiftMask|ControlMask|Mod1Mask|Mod2Mask|Mod3Mask|Mod4Mask|Mod5Mask))
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
const char** com;
|
||||||
|
const int i;
|
||||||
|
const Window w;
|
||||||
|
} Arg;
|
||||||
|
|
||||||
|
struct key {
|
||||||
|
unsigned int mod;
|
||||||
|
KeySym keysym;
|
||||||
|
void (*function)(const Arg arg);
|
||||||
|
const Arg arg;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef struct client {
|
||||||
|
struct client *next, *prev;
|
||||||
|
int f, wx, wy;
|
||||||
|
unsigned int ww, wh;
|
||||||
|
Window w;
|
||||||
|
} client;
|
||||||
|
|
||||||
|
void button_press(XEvent *e);
|
||||||
|
void button_release(XEvent *e);
|
||||||
|
void configure_request(XEvent *e);
|
||||||
|
void input_grab(Window root);
|
||||||
|
void key_press(XEvent *e);
|
||||||
|
void map_request(XEvent *e);
|
||||||
|
void mapping_notify(XEvent *e);
|
||||||
|
void notify_destroy(XEvent *e);
|
||||||
|
void notify_enter(XEvent *e);
|
||||||
|
void notify_motion(XEvent *e);
|
||||||
|
void run(const Arg arg);
|
||||||
|
void win_add(Window w);
|
||||||
|
void win_center(const Arg arg);
|
||||||
|
void win_del(Window w);
|
||||||
|
void win_fs(const Arg arg);
|
||||||
|
void win_focus(client *c);
|
||||||
|
void win_kill(const Arg arg);
|
||||||
|
void win_prev(const Arg arg);
|
||||||
|
void win_next(const Arg arg);
|
||||||
|
void win_to_ws(const Arg arg);
|
||||||
|
void ws_go(const Arg arg);
|
||||||
|
|
||||||
|
static int xerror() { return 0; }
|
Loading…
x
Reference in New Issue
Block a user