Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ config.h:
cp config.def.h config.h

sowm:
$(CC) -O3 $(CFLAGS) -o sowm sowm.c -lX11 $(LDFLAGS)
$(CC) -O3 $(CFLAGS) -o sowm sowm.c -lX11 -lXinerama $(LDFLAGS)

install: all
install -Dm755 sowm $(DESTDIR)$(BINDIR)/sowm
Expand Down
38 changes: 34 additions & 4 deletions sowm.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
#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>

#include "sowm.h"

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, monitors;
static unsigned int ww, wh;

static Display *d;
Expand Down Expand Up @@ -62,6 +63,8 @@ void notify_motion(XEvent *e) {
wy + (mouse.button == 1 ? yd : 0),
MAX(1, ww + (mouse.button == 3 ? xd : 0)),
MAX(1, wh + (mouse.button == 3 ? yd : 0)));

win_size(cur->w, &cur->wx, &cur->wx, &cur->ww, &cur->wh);
}

void key_press(XEvent *e) {
Expand Down Expand Up @@ -126,20 +129,47 @@ void win_kill(const Arg arg) {
if (cur) XKillClient(d, cur->w);
}

int multimonitor_action (int action) { // action = 0 -> center; action = 1 -> fs
if (!XineramaIsActive(d)) return 1;
XineramaScreenInfo *si = XineramaQueryScreens(d, &monitors);
for (int i = 0; i < monitors; i++) {
if ((cur->wx + (cur->ww/2) >= (unsigned int)si[i].x_org
&& cur->wx + (cur->ww/2) < (unsigned int)si[i].x_org + si[i].width)
&& ( cur->wy + (cur->wh/2) >= (unsigned int)si[i].y_org
&& cur->wy + (cur->wh/2) < (unsigned int)si[i].y_org + si[i].height)) {
if (action)
XMoveResizeWindow(d, cur->w,
si[i].x_org, si[i].y_org,
si[i].width, si[i].height);
else
XMoveWindow(d, cur->w,
si[i].x_org + ((si[i].width - ww)/2),
si[i].y_org + ((si[i].height -wh)/2));
break;
}
}
return 0;
}

void win_center(const Arg arg) {
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_action(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(const Arg arg) {
if (!cur) return;

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_action(1)) {
XMoveResizeWindow(d, cur->w, 0, 0, sw, sh);
}
} else {
XMoveResizeWindow(d, cur->w, cur->wx, cur->wy, cur->ww, cur->wh);
}
Expand Down
2 changes: 2 additions & 0 deletions sowm.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ typedef struct client {
Window w;
} client;

int multimonitor_action(int action);

void button_press(XEvent *e);
void button_release(XEvent *e);
void configure_request(XEvent *e);
Expand Down