15 lines
195 B
Nix
15 lines
195 B
Nix
{writeShellApplication}:
|
|
writeShellApplication
|
|
{
|
|
name = "restart";
|
|
|
|
runtimeInputs = [];
|
|
|
|
text = ''
|
|
# Restart script for kde
|
|
|
|
killall .plasmashell-wr
|
|
kstart plasmashell&
|
|
'';
|
|
}
|