Big changes concerning color scheme (switching to seventy nine), reorganized monitors config files, new notification daemon and quick settings panel, new scripts and other minor changes

This commit is contained in:
Gu://em_ 2025-06-04 19:28:09 +02:00
parent 746fa5a835
commit 602e3f2f97
28 changed files with 1034 additions and 60 deletions

18
.local/bin/avahi-patch.sh Executable file
View file

@ -0,0 +1,18 @@
#!/bin/sh
if [ $(whoami) != root ]; then
echo "Please run this script as root"
echo "-> sudo $0"
echo
sudo $0
exit $?
fi
apps_path=/usr/share/applications
rm $apps_path/avahi-discover.desktop
rm $apps_path/bvnc.desktop
rm $apps_path/bssh.desktop
echo "- Done"
exit 0