test
This commit is contained in:
parent
fbf0cd278c
commit
fcddb13608
1 changed files with 11 additions and 3 deletions
|
@ -50,13 +50,21 @@
|
||||||
light-theme = {
|
light-theme = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = [ pkgs.at pkgs.fx pkgs.nodejs ];
|
path = [ pkgs.at pkgs.fx pkgs.nodejs ];
|
||||||
script = ''echo "plasma-apply-colorscheme -platform offscreen Arc" | at `${pkgs.fx}/bin/fx /tmp/wttr.in .weather[0].astronomy[0].sunrise`'';
|
script = ''
|
||||||
|
uid
|
||||||
|
whoami
|
||||||
|
echo "plasma-apply-colorscheme -platform offscreen Arc" | at `${pkgs.fx}/bin/fx /tmp/wttr.in .weather[0].astronomy[0].sunrise`
|
||||||
|
'';
|
||||||
serviceConfig.Type = "oneshot";
|
serviceConfig.Type = "oneshot";
|
||||||
};
|
};
|
||||||
dark-theme = {
|
dark-theme = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = [ pkgs.at pkgs.fx pkgs.nodejs ];
|
path = [ pkgs.at pkgs.fx pkgs.nodejs ];
|
||||||
script = ''echo "plasma-apply-colorscheme -platform offscreen ArcDark" | at `${pkgs.fx}/bin/fx /tmp/wttr.in .weather[0].astronomy[0].sunset`'';
|
script = ''
|
||||||
|
uid
|
||||||
|
whoami
|
||||||
|
echo "plasma-apply-colorscheme -platform offscreen ArcDark" | at `${pkgs.fx}/bin/fx /tmp/wttr.in .weather[0].astronomy[0].sunset`
|
||||||
|
'';
|
||||||
serviceConfig.Type = "oneshot";
|
serviceConfig.Type = "oneshot";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -73,4 +81,4 @@
|
||||||
timerConfig.OnCalendar = [ "*-*-* *:*:00" ];
|
timerConfig.OnCalendar = [ "*-*-* *:*:00" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
Loading…
Reference in a new issue