@eshanized: push via push.sh!!!

This commit is contained in:
2024-03-04 23:29:53 +05:30
parent f4793beacd
commit 009f58a986

View File

@@ -0,0 +1,32 @@
#!/bin/bash
# set -e
# Author : Eshan Roy <eshan@snigdhaos.or>
# Author URL : https://eshanized.github.io/
echo
echo "--->> Start snigdhaos-fixes <<---"
echo
desktop=$(ls /usr/share/xsessions/)
echo
echo "Your Current Desktop: "$desktop
echo
# Let's make some cases
case $desktop in
ukui.desktop)
echo "Found : Lightm [STATUS: ACTIVE]"
pacman -S sddm --noconfirm --needed
systemctl enable sddm.service -f
;;
deepin.desktop)
echo "Found : Lightm [STATUS: ACTIVE]"
pacman -S sddm --noconfirm --needed
systemctl enable sddm.service -f
;;
*)
echo "Nothing To Do!!!"
esac