From 6618873109cc886ba2299a398d035bca09a04d52 Mon Sep 17 00:00:00 2001 From: iFargle Date: Tue, 2 Jan 2024 22:10:47 +0900 Subject: [PATCH] Test --- nixos/common/desktops/plasma6/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/common/desktops/plasma6/default.nix b/nixos/common/desktops/plasma6/default.nix index da7de7d4..0b174cb5 100644 --- a/nixos/common/desktops/plasma6/default.nix +++ b/nixos/common/desktops/plasma6/default.nix @@ -50,13 +50,13 @@ light-theme = { enable = true; path = [ pkgs.at pkgs.fx]; - script = ''echo "plasma-apply-colorscheme -platform offscreen Arc" | at `fx /tmp/wttr.in .weather[0].astronomy[0].sunrise`''; + script = ''echo "plasma-apply-colorscheme -platform offscreen Arc" | at -u ${username} `fx /tmp/wttr.in .weather[0].astronomy[0].sunrise`''; serviceConfig.Type = "oneshot"; }; dark-theme = { enable = true; path = [ pkgs.at pkgs.fx]; - script = ''echo "plasma-apply-colorscheme -platform offscreen ArcDark" | at `fx /tmp/wttr.in .weather[0].astronomy[0].sunset`''; + script = ''echo "plasma-apply-colorscheme -platform offscreen ArcDark" | at -u ${username} `fx /tmp/wttr.in .weather[0].astronomy[0].sunset`''; serviceConfig.Type = "oneshot"; }; };