From cc55b99ecd056ca37133bdd1efbdd9fabf387920 Mon Sep 17 00:00:00 2001 From: simono41 Date: Sun, 26 Aug 2018 19:47:05 +0200 Subject: [PATCH] fix-startup --- startup | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/startup b/startup index c1e0e89..a42d5f4 100755 --- a/startup +++ b/startup @@ -9,17 +9,17 @@ date >> /startup.log startparameter=$(cat /proc/cmdline) # for-schleife - for wort in ${startparameter} - do +for wort in ${startparameter} +do echo "$wort" export ${wort%=*}=${wort#*=} echo "Parameter ${wort%=*} = ${wort#*=}" - done +done if [ -n "${run}" ]; then -echo "${run}" -sleep 5 -${run} + echo "${run}" + #sleep 5 + ${run} fi # Disable IPv6 @@ -31,46 +31,46 @@ fi if cat /proc/cmdline | grep "nvidia=y"; then - echo ":: nvidia driver loaded" + echo ":: nvidia driver loaded" - mkdir -p -m 755 /etc/X11/xorg.conf.d/ + mkdir -p -m 755 /etc/X11/xorg.conf.d/ - nvidia-xconfig + nvidia-xconfig fi echo ":: set graphical-desktop!" mkdir -p -m 755 "/etc/X11/xinit" if cat /proc/cmdline | grep "desktop=gnome"; then - echo "exec gnome-session" > /etc/X11/xinit/xinitrc + echo "exec gnome-session" > /etc/X11/xinit/xinitrc elif cat /proc/cmdline | grep "desktop=gnomeflash"; then - echo "export XDG_CURRENT_DESKTOP=GNOME-Flashback:GNOME" > /etc/X11/xinit/xinitrc - echo "exec gnome-session --session=gnome-flashback-metacity" >> /etc/X11/xinit/xinitrc + echo "export XDG_CURRENT_DESKTOP=GNOME-Flashback:GNOME" > /etc/X11/xinit/xinitrc + echo "exec gnome-session --session=gnome-flashback-metacity" >> /etc/X11/xinit/xinitrc elif cat /proc/cmdline | grep "desktop=gnomeclassic"; then - echo "export XDG_CURRENT_DESKTOP=GNOME-Classic:GNOME" > /etc/X11/xinit/xinitrc - echo "export GNOME_SHELL_SESSION_MODE=classic" >> /etc/X11/xinit/xinitrc - echo "exec gnome-session --session=gnome-classic" >> /etc/X11/xinit/xinitrc + echo "export XDG_CURRENT_DESKTOP=GNOME-Classic:GNOME" > /etc/X11/xinit/xinitrc + echo "export GNOME_SHELL_SESSION_MODE=classic" >> /etc/X11/xinit/xinitrc + echo "exec gnome-session --session=gnome-classic" >> /etc/X11/xinit/xinitrc elif cat /proc/cmdline | grep "desktop=cinnamon"; then - echo "exec cinnamon-session" > /etc/X11/xinit/xinitrc + echo "exec cinnamon-session" > /etc/X11/xinit/xinitrc elif cat /proc/cmdline | grep "desktop=mate"; then - echo "exec mate-session" > /etc/X11/xinit/xinitrc + echo "exec mate-session" > /etc/X11/xinit/xinitrc elif cat /proc/cmdline | grep "desktop=lxde"; then - echo "exec startlxde" > /etc/X11/xinit/xinitrc + echo "exec startlxde" > /etc/X11/xinit/xinitrc elif cat /proc/cmdline | grep "desktop=lxqt"; then - echo "exec startlxqt" > /etc/X11/xinit/xinitrc + echo "exec startlxqt" > /etc/X11/xinit/xinitrc elif cat /proc/cmdline | grep "desktop=xfce4"; then - echo "exec startxfce4" > /etc/X11/xinit/xinitrc + echo "exec startxfce4" > /etc/X11/xinit/xinitrc elif cat /proc/cmdline | grep "desktop=kde"; then - echo "exec startkde" > /etc/X11/xinit/xinitrc + echo "exec startkde" > /etc/X11/xinit/xinitrc else - echo ":: default graphical-desktop" + echo ":: default graphical-desktop" fi