From 956a078896b36926b282763808134ee0a69f5f4e Mon Sep 17 00:00:00 2001 From: dataprolet Date: Mon, 27 May 2024 11:49:34 +0000 Subject: [PATCH] Fix cp error --- installer.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/installer.sh b/installer.sh index 7a51698..aa18df7 100644 --- a/installer.sh +++ b/installer.sh @@ -4,7 +4,8 @@ mkdir -p "~/.config/systemd/user" # Copy unit files -cp theme-switcher.{timer,service} "~/.config/systemd/user" +cp theme-switcher.service "~/.config/systemd/user" +cp theme-switcher.timer "~/.config/systemd/user" # Add username to service file sed -i "s/username/$(whoami)/g" ~/.config/systemd/user/theme-switcher.service