OSDN Git Service

remove old file
[instantos/instantOS.git] / rootinstall.sh
old mode 100644 (file)
new mode 100755 (executable)
index 0b3703b..168d1b4
@@ -1,10 +1,10 @@
 #!/bin/bash
 
-######################################################
-## installs all system wide programs for instantOS  ##
-######################################################
+####################################################
+## installs all system wide tweaks for instantOS  ##
+####################################################
 
-if ! [ $(whoami) = "root" ]; then
+if ! [ "$(whoami)" = "root" ]; then
     echo "please run this as root"
     exit 1
 fi
@@ -16,7 +16,7 @@ ugroup() {
     groupadd "$1" &>/dev/null
     for USER in $(ls /home/ | grep -v '+'); do
         if ! sudo su "$USER" -c groups | grep -Eq " $1|$1 "; then
-            sudo gpasswd -a $USER $1
+            sudo gpasswd -a "$USER" "$1"
         fi
     done
 }
@@ -48,10 +48,11 @@ addenv() {
 
 addenv -f "QT_QPA_PLATFORMTHEME" "qt5ct"
 addenv -f "PAGER" "less"
-command -v nvim &>/dev/null && addenv -f "EDITOR" "$(which nvim)"
+addenv -f "EDITOR" "$(which nvim)"
+addenv -f "XDG_MENU_PREFIX" "gnome-"
 
 # needed for instantLOCK
-if grep -q 'nobody' </etc/groups || grep -q 'nobody' </etc/group; then
+if grep -q 'nobody' </etc/groups &>/dev/null || grep -q 'nobody' </etc/group &>/dev/null; then
     echo "nobody workaround not required"
 else
     sudo groupadd nobody
@@ -66,16 +67,111 @@ else
     echo "java workaround already applied"
 fi
 
-if [ -e /etc/lightdm/lightdm.conf ] && ! grep -q 'instantwm' /etc/lightdm/lightdm.conf; then
-    sudo sed -i 's/^user-session=.*/user-session=instantwm/g' /etc/lightdm/lightdm.conf
-    sudo sed -i '# user-session = Session to load for users/user-session=instantwm/g' /etc/lightdm/lightdm.conf
+# color scheme for tty
+if ! grep -q '# nord colors' /etc/profile; then
+    echo "applying color scheme"
+
+    echo '# nord colors' >>/etc/profile
+    echo 'if [ "$TERM" = "linux" ]; then' >>/etc/profile
+
+    cat <<EOT >>/etc/profile
+    echo -en "\e]P0383c4a" #black
+    echo -en "\e]P8404552" #darkgrey
+    echo -en "\e]P19A4138" #darkred
+    echo -en "\e]P9E7766B" #red
+    echo -en "\e]P24BEC90" #darkgreen
+    echo -en "\e]PA3CBF75" #green
+    echo -en "\e]P3CFCD63" #brown
+    echo -en "\e]PBFFD75F" #yellow
+    echo -en "\e]P45294e2" #darkblue
+    echo -en "\e]PC579CEF" #blue
+    echo -en "\e]P5CE50DD" #darkmagenta
+    echo -en "\e]PDE7766B" #magenta
+    echo -en "\e]P66BE5E7" #darkcyan
+    echo -en "\e]PE90FDFF" #cyan
+    echo -en "\e]P7CCCCCC" #lightgrey
+    echo -en "\e]PFFFFFFF" #white
+    clear #for background artifacting
+fi
+
+EOT
+
+fi
+
+# /tmp/topinstall is present if rootinstall is running on postinstall
+# like on existing installations
+if ! [ -e /tmp/topinstall ] && command -v plymouth-set-default-theme && ! grep -iq 'manjaro' /etc/os-release; then
+    # install a custom repo
+    if ! grep -q '\[instant\]' /etc/pacman.conf; then
+        /usr/share/instantutils/repo.sh
+    else
+        echo "instantOS repo found"
+    fi
+
+    # deactivate root password, will be reenabled on postinstall
+    if ! grep -iq manjaro /etc/os-release; then
+        echo "root ALL=(ALL) NOPASSWD:ALL #instantosroot" >>/etc/sudoers
+        echo "" >>/etc/sudoers
+    fi
+
+    if ! [ -e /opt/instantos/bootscreen ] && [ -e /opt/instantos/realinstall ] && ! [ -e /opt/instantos/noplymouth ]; then
+        echo "installing boot splash screen"
+        plymouth-set-default-theme instantos
+
+        if ! grep -q 'instantos boot animation' /etc/default/grub; then
+            sed -i '/^GRUB_CMDLINE_LINUX_DEFAULT="/aGRUB_CMDLINE_LINUX_DEFAULT="$GRUB_CMDLINE_LINUX_DEFAULT quiet splash loglevel=3 rd.udev.log_priority=3 vt.global_cursor_default=0" # instantos boot animation' \
+                /etc/default/grub
+        fi
+
+        if ! grep -q '.*plymouth.* # boot screen' /etc/mkinitcpio.conf; then
+            sed -i '/^HOOKS/aHOOKS+=(plymouth) # boot screen' /etc/mkinitcpio.conf
+        fi
+
+        systemctl disable lightdm
+        systemctl enable lightdm-plymouth
+
+        /etc/mkinitcpio.conf
+        update-grub
+        mkinitcpio -P
+        touch /opt/instantos/bootscreen
+    fi
 fi
 
-rm -rf /tmp/instantinstall
-mkdir /tmp/instantinstall
-cd /tmp/instantinstall
+# tmux doesn't count as console user
+if ! [ -e /etc/X11/Xwrapper.config ]; then
+    echo "enabling startx"
+    echo 'allowed_users=anybody' >/etc/X11/Xwrapper.config
+fi
+
+if [ -e /opt/livebuilder ]; then
+    echo "live session builder detected"
+else
+    if [ -e /etc/lightdm/lightdm.conf ] && ! grep -q 'instantwm' /etc/lightdm/lightdm.conf; then
+        sudo sed -i 's/^user-session=.*/user-session=instantwm/g' /etc/lightdm/lightdm.conf
+        sudo sed -i '# user-session = Session to load for users/user-session=instantwm/g' /etc/lightdm/lightdm.conf
+    fi
 
-echo "the theme is $THEME"
+    # check if computer is a potato
+    MEMAMOUNT="$($(which free) -m | grep -vi swap | grep -o '[0-9]*' | sort -n | tail -1)"
+
+    # computer is not a potato if it has an nvidia card, a ryzen processor or more than 3,5gb of ram.
+    # it can be unpotatoed at any time.
+
+    if grep -iq 'Ryzen' /proc/cpuinfo || lshw -C display | grep -q 'nvidia' || [ "$MEMAMOUNT" -gt 3500 ]; then
+        echo "classifying pc as not a potato"
+    else
+        echo "looks like your pc is a potato"
+        mkdir -p /opt/instantos
+        echo "true" >/opt/instantos/potato
+    fi
+
+    # fix brightness permissions
+    bash /usr/share/instantassist/data/backlight.sh
+    # set up postinstall trigger
+
+    mkdir -p /opt/instantos
+    touch /opt/instantos/installtrigger
+fi
 
-cd /tmp
-rm -rf instantos
+# indicator file
+touch /opt/instantos/rootinstall