dotfiles

my shiny new dotfiles
git clone git://git.jakekoroman.com/dotfiles
Log | Files | Refs | README

commit 79e9e467a66f0a477bed1ea3729487ea7c889a09
parent 7ffaa0f6d7db5fc0bdedf443d2645ba4cf8c0607
Author: Jake Koroman <jakekoroman@gmail.com>
Date:   Sat,  6 Apr 2024 16:11:54 -0400

dwl changes.

Diffstat:
Mdevice-specific/laptop/dwl-hardware.h | 6++++++
Mdwl/Makefile | 2+-
2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/device-specific/laptop/dwl-hardware.h b/device-specific/laptop/dwl-hardware.h @@ -15,6 +15,12 @@ static const MonitorRule monrules[] = { { "DP-4", 0.50f, 1, 1, &layouts[0], WL_OUTPUT_TRANSFORM_NORMAL, 1706, 0, 2560, 1440, 60.0f, 1, 0}, }; +/* Autostart */ +static const char *const autostart[] = { + "sh", "-c", "artix-pipewire-launcher.sh", NULL, + NULL /* terminate */ +}; + /* keyboard */ static const struct xkb_rule_names xkb_rules = { /* can specify fields: rules, model, layout, variant, options */ diff --git a/dwl/Makefile b/dwl/Makefile @@ -18,7 +18,7 @@ PREFIX = $(HOME)/.local all: dwl dwl: dwl.o util.o dwl-ipc-unstable-v2-protocol.o $(CC) dwl.o util.o dwl-ipc-unstable-v2-protocol.o $(LDLIBS) $(LDFLAGS) $(DWLCFLAGS) -o $@ -dwl.o: dwl.c config.mk config.h client.h cursor-shape-v1-protocol.h pointer-constraints-unstable-v1-protocol.h wlr-layer-shell-unstable-v1-protocol.h xdg-shell-protocol.h dwl-ipc-unstable-v2-protocol.h +dwl.o: dwl.c config.mk device.h config.h client.h cursor-shape-v1-protocol.h pointer-constraints-unstable-v1-protocol.h wlr-layer-shell-unstable-v1-protocol.h xdg-shell-protocol.h dwl-ipc-unstable-v2-protocol.h util.o: util.c util.h dwl-ipc-unstable-v2-protocol.o: dwl-ipc-unstable-v2-protocol.c dwl-ipc-unstable-v2-protocol.h