xaizek / euclid-wm (License: BSD 3-Clause) (since 2018-12-07)
A minimalist, tiling window manager for X11 that seeks to allow easy management of numerous windows entirely from the keyboard.
Commit 03046f12324f5189dbd5bb3fcc3085270338b7fc

fix bug that prevented searching for windows with dmenu
Author: William Diem
Author date (UTC): 2023-05-02 03:42
Committer name: William Diem
Committer date (UTC): 2023-05-02 03:42
Parent(s): dd97c4db565e03142fbb34a4a97c4297dc216b7d
Signing key:
Tree: 482f3eb39f1ab3ae09e2ae015f2ed1f565bbcb60
File Lines added Lines deleted
euclid-wm.c 1 1
File euclid-wm.c changed (mode: 100644) (index c211538..138391c)
... ... void load_conf( bool first_call) {
485 485 } else if (strcmp(key,"reserved_right") == 0) { } else if (strcmp(key,"reserved_right") == 0) {
486 486 res_right = atoi(v); res_right = atoi(v);
487 487 } else if (strcmp(key,"window_menu") == 0) { } else if (strcmp(key,"window_menu") == 0) {
488 win_menu = v;
488 win_menu = atoi(v);
489 489 } else if (strcmp(key,"modkey") == 0) { } else if (strcmp(key,"modkey") == 0) {
490 490 if (strcmp(v,"1") == 0) { if (strcmp(v,"1") == 0) {
491 491 mod = Mod1Mask; mod = Mod1Mask;
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/euclid-wm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/euclid-wm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master