First commit: Beta 25.04.04

This commit is contained in:
Gu://em_ 2025-04-04 16:51:00 +02:00
commit e6b08b867f
58 changed files with 4196 additions and 0 deletions

View file

@ -0,0 +1,17 @@
#!/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/codium.desktop
sed -i "s/Name=VSCodium - Wayland/Name=VSCodium/g" $apps_path/codium-wayland.desktop
echo "- Done"
exit 0