16 lines
360 B
Bash
Executable File
16 lines
360 B
Bash
Executable File
#!/bin/bash
|
|
|
|
sleep 5
|
|
|
|
theme="com.github.Melawy.Melawy-round-gray.Nier-A2.desktop"
|
|
|
|
plasma-apply-lookandfeel -a "$theme" --resetLayout
|
|
|
|
notify-send -t 5000 -a "Theme is" "$theme" "$(date '+%Y.%m.%d %H:%M:%S')"
|
|
|
|
if [ "$(whoami)" != "liveuser" ]; then
|
|
sleep 5
|
|
rm "$HOME/.config/autostart/reset-layout.desktop"
|
|
rm "$HOME/.local/bin/reset-layout.sh"
|
|
fi
|