]> git.vanrenterghem.biz Git - Dotty.git/commitdiff
Set PATH (more...) sanely and use XFCE4.
authorFrederik Vanrenterghem <frederik@vanrenterghem.biz>
Tue, 23 Jul 2024 13:53:15 +0000 (21:53 +0800)
committerFrederik Vanrenterghem <frederik@vanrenterghem.biz>
Tue, 23 Jul 2024 13:53:15 +0000 (21:53 +0800)
bash/.bashrc
xorg-xinit/.xinitrc [changed mode: 0644->0755]

index 12b51840e0a52f24eb53c3204185a44cf145a3c5..f1859838ae2148e4049788cf3701b0fa44b4febc 100644 (file)
@@ -31,4 +31,16 @@ export PYENV_ROOT="$HOME/.pyenv"
 [[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
 eval "$(pyenv init -)"
 
 [[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
 eval "$(pyenv init -)"
 
-export PATH="$PATH:$HOME/scripts"
+# Append "$1" to $PATH when not already in.
+append_path () {
+    case ":$PATH:" in
+        *:"$1":*)
+            ;;
+        *)
+            PATH="${PATH:+$PATH:}$1"
+    esac
+}
+
+# Append our default paths
+append_path '/home/frederik/scripts'
+
old mode 100644 (file)
new mode 100755 (executable)
index a8ad133..12e77cc
@@ -1,3 +1,4 @@
+#!/bin/sh
 if [ -d /etc/X11/xinit/xinitrc.d ] ; then
  for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
   [ -x "$f" ] && . "$f"
 if [ -d /etc/X11/xinit/xinitrc.d ] ; then
  for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
   [ -x "$f" ] && . "$f"
@@ -7,7 +8,7 @@ fi
 
 # Effectively disable DPMS by setting values to 0 as laptop screen does not resume
 # Use standard blank screen saver after 5 minutes
 
 # Effectively disable DPMS by setting values to 0 as laptop screen does not resume
 # Use standard blank screen saver after 5 minutes
-export DISPLAY=:0.0
+#export DISPLAY=:0.0
 xset s 300
 xset s blank
 xset dpms 0 0 0
 xset s 300
 xset s blank
 xset dpms 0 0 0
@@ -47,6 +48,20 @@ xsetroot -solid "#333333"
 # Enable core dumps in case something goes wrong
 ulimit -c unlimited
 
 # Enable core dumps in case something goes wrong
 ulimit -c unlimited
 
+# Append "$1" to $PATH when not already in.
+append_path () {
+    case ":$PATH:" in
+        *:"$1":*)
+            ;;
+        *)
+            PATH="${PATH:+$PATH:}$1"
+    esac
+}
+
+# Append our default paths
+append_path '/home/frederik/scripts'
+
 # Start i3 and log to ~/.i3logfile
 echo "Starting at $(date)" >> ~/.i3logfile
 # Start i3 and log to ~/.i3logfile
 echo "Starting at $(date)" >> ~/.i3logfile
-exec /usr/bin/i3 -V -d all >> ~/.i3logfile
+#exec /usr/bin/i3
+exec startxfce4