NixOS-Config/pkgs/restart/default.nix

15 lines
195 B
Nix
Raw Permalink Normal View History

{writeShellApplication}:
2024-03-14 17:03:05 +01:00
writeShellApplication
{
name = "restart";
2024-03-14 17:04:22 +01:00
runtimeInputs = [];
2024-03-14 17:03:05 +01:00
text = ''
# Restart script for kde
killall .plasmashell-wr
kstart plasmashell&
2024-03-14 17:03:05 +01:00
'';
}