From 408177b784525b044d81064c13846f9b32bc19cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Mon, 29 Aug 2022 07:57:17 +0200 Subject: [PATCH] Add user services to makefile --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index 8f7fdfd..99c4406 100644 --- a/Makefile +++ b/Makefile @@ -371,6 +371,13 @@ wallpapers_and_lockscreens: check_os @cp /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png $(WALLPAPERS_ROOT) @cp /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png $(LOCKSCREENS_ROOT) +.PHONY: user_systemd_services +user_systemd_services: check_os + @echo "Enabling user systemd services..." + @echo "Please install and configure mbsync and vdirsyncer..." + @systemd enable --now --user mbsync.timer + @systemd enable --now --user vdirsyncer.timer + .PHONY: homebrew homebrew: check_os @echo "Installing homebrew..."