Compare commits

..

13 commits

Author SHA1 Message Date
5629572623
allow passing path and executables for autostart purposes
via -p and -e parameters respectively
2024-01-24 23:21:48 +01:00
b0d65d8d17
remove xwayland 2024-01-24 23:21:48 +01:00
4af042e01a
add missing type annotation 2024-01-24 23:21:48 +01:00
8aafc7dad7
update flake.lock 2024-01-24 23:21:48 +01:00
65427796a4
add keybinds for screenshot and wmenu 2024-01-24 23:21:48 +01:00
b169e94d36
set up more Rules 2024-01-24 23:21:48 +01:00
350cad4b5d
add autostart 2024-01-24 23:21:48 +01:00
e7c3cb05e2
change monitor scaling 2024-01-24 23:21:48 +01:00
cf4dc1f5c3
set keyboard layout to us(intl) 2024-01-24 23:21:48 +01:00
9bb7a64a3e
Set modkey to LOGO 2024-01-24 23:21:48 +01:00
8a582574da
clangd setup 2024-01-24 23:21:47 +01:00
215f36ea35
setup for nix 2024-01-24 23:21:42 +01:00
Leonardo Hernández Hernández
433385f7f1
do not arrange monitor if it's disabled (wlroots!4520)
This causes us to send negative values to xdg-configures (e.g a bug in our end)

References: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4520
(cherry picked from commit 4043fc3093a73174cb63653ba9e742b4738f2ee5)
2024-01-24 13:36:46 -06:00

4
dwl.c
View file

@ -467,6 +467,10 @@ void
arrange(Monitor *m)
{
Client *c;
if (!m->wlr_output->enabled)
return;
wl_list_for_each(c, &clients, link) {
if (c->mon == m) {
wlr_scene_node_set_enabled(&c->scene->node, VISIBLEON(c, m));