From b3b213543969e84eb1b703a97fd91aa49c3bba55 Mon Sep 17 00:00:00 2001 From: klemek Date: Fri, 28 Aug 2026 10:22:12 +0200 Subject: [PATCH] wip --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d8e5f11..304d2db 100644 --- a/Makefile +++ b/Makefile @@ -40,20 +40,20 @@ apt-install: .PHONY: setup-weston setup-weston: - ln -s $(PWD)/system/weston.ini $(XDG_CONFIG_HOME)/weston.ini + ln -s $(PWD)/system/weston.ini $(HOME)/.config/weston.ini .PHONY: setup-system-services setup-system-services: sudo ln -s $(PWD)/system/getty@tty1.service /etc/systemd/system/getty@tty1.service sudo systemctl daemon-reload - sudo systemctl enable getty@tty1.service + sudo systemctl enable getty@tty1.service seatd.service .PHONY: setup-user-services setup-user-services: sudo ln -s $(PWD)/system/weston.service /etc/systemd/user/weston.service sudo ln -s $(PWD)/system/weston.socket /etc/systemd/user/weston.socket systemctl --user daemon-reload - systemctl --user enable weston seatd + systemctl --user enable weston .PHONY: install