11 lines
257 B
Cheetah
11 lines
257 B
Cheetah
{{- if eq .host.distro.family "linux" -}}
|
|
#!/usr/bin/env bash
|
|
|
|
### Restart GNOME
|
|
if command -v gnome-shell > /dev/null; then
|
|
logg info 'Manually reload `gnome-shell`'
|
|
# logg info 'Reloading `gnome-shell`'
|
|
# killall -3 gnome-shell
|
|
fi
|
|
|
|
{{ end -}}
|