NixOS-Config/pkgs/restart/default.nix

19 lines
217 B
Nix
Raw Normal View History

2024-03-14 17:03:05 +01:00
{
lib,
stdenv,
writeShellApplication,
}:
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
'';
}