]> git.sev.monster Git - dotfiles.git/blobdiff - base/.xinitrc
reorganize aliases, clean up binds, add zoxide
[dotfiles.git] / base / .xinitrc
index fc4bbb57a8f61f13a85c422aa0f6ed11ca14841f..30db18bddcbcaf053d33b56c754f58e04fdc2b46 100644 (file)
@@ -1,38 +1,23 @@
-#!/bin/sh
-
-sysmodmap=/usr/local/etc/X11/xinit/.Xmodmap
-sysresources=/usr/local/etc/X11/xinit/.Xresources
-usermodmap="$HOME/.Xmodmap"
-userresources="$HOME/.Xresources"
-
-if [ -f $sysresources ]; then
-       xrdb -merge $sysresources
-fi
-if [ -f $sysmodmap ]; then
-       xmodmap $sysmodmap
-fi
-if [ -f "$userresources" ]; then
-       xrdb -merge "$userresources"
-fi
-if [ -f "$usermodmap" ]; then
-       xmodmap "$usermodmap"
-fi
-
-# redshift, root image
-redon &
-"$HOME/.fehbg"
+#!/bin/zsh
+# using zsh to load .zshenv (eg. for PATH) but file is sh-compatible
 
 # Xorg settings
 
 # Xorg settings
+# TODO: create shim for cpp
+xrdb -merge ~/.Xresources
+xmodmap ~/.Xmodmap
 xset r rate 290 26 &
 xset m 1/1 0 &
 xset s off
 xset dpms 0 0 600
 xset r rate 290 26 &
 xset m 1/1 0 &
 xset s off
 xset dpms 0 0 600
-
-find -L "${XDG_DATA_HOME:-~/share}/fonts" -type d -mindepth 1 -maxdepth 1 | while read -r x; do
-       xset +fp $x/
+find -L "${XDG_DATA_HOME:-~/share}/fonts" -mindepth 1 -maxdepth 2 -type d | while read -r x; do
+       [ -f "$x/fonts.dir" ] && xset +fp $x
 done
 xset fp rehash
 
 done
 xset fp rehash
 
+# redshift, root image
+redon &
+wall &
+
 # root terminal
 urxvt -name TermBg1 -override-redirect -geometry x5+0--1 \
       -e tail -F /var/log/messages &
 # root terminal
 urxvt -name TermBg1 -override-redirect -geometry x5+0--1 \
       -e tail -F /var/log/messages &
@@ -45,22 +30,24 @@ volumeicon &
 # daemons
 dunst &
 mpc-notify -d &
 # daemons
 dunst &
 mpc-notify -d &
-xautolock -time 10 -locker "$HOME/bin/l" &
+xautolock -time 10 -locker "$HOME/bin/lck" &
 xbanish &
 xbanish &
-eval `ssh-agent`
 
 
-if [ -x /usr/local/bin/urxvtd ]; then
+if [ -z "$TERMINAL" -a \( -x $(which -a urxvtd | head -1) \) ]; then
        for i in 1 2; do
                # try to start client twice, once before checking for daemon
                # and another after trying to start it
        for i in 1 2; do
                # try to start client twice, once before checking for daemon
                # and another after trying to start it
-               urxvtc -e exit
+               urxvtc -e exit >/dev/null 2>&1
                if [ $? -eq 2 ]; then
                        # daemon not started, attempt to start once
                        if [ $i -eq 1 ]; then
                                urxvtd -q -o -f
                if [ $? -eq 2 ]; then
                        # daemon not started, attempt to start once
                        if [ $i -eq 1 ]; then
                                urxvtd -q -o -f
+                       else
+                               TERMINAL=urxvt
+                               export TERMINAL
                        fi
                else
                        fi
                else
-                       TERMINAL=/usr/local/bin/urxvtc
+                       TERMINAL=urxvtc
                        export TERMINAL
                        break
                fi
                        export TERMINAL
                        break
                fi
@@ -68,31 +55,20 @@ if [ -x /usr/local/bin/urxvtd ]; then
        unset i
 fi
 
        unset i
 fi
 
-# try to wait for session to start
-#(sleep 0.1 && tint2) &
-#(sleep 0.1 && yabar -c "$HOME/etc/yabar/yabar.conf") &
-#x220t
-(sleep 0.1 && [ -x "$HOME/bin/acpi_ac" ] && \
-       "$HOME/bin/acpi_ac" "0x0`sysctl -n hw.acpi.acline`") &
-(sleep 1.5 && [ -x /usr/local/bin/conky ] && conky -c "$HOME/.conkyrc.d/dock") &
+# taskbar
+# sleep to wait for session to start fully
+(sleep 0.1 && tint2) &
 
 
-# load any global scripts
-if [ -d /usr/local/etc/X11/xinit/xinitrc.d ]; then
-       for f in /usr/local/etc/X11/xinit/xinitrc.d/?*.sh; do
-               [ -x "$f" ] && . "$f"
-       done
-       unset f
-fi
+# x220t
+# TODO: check hostname to load auxillary things
+# TODO: reformat for linux
+#(sleep 0.1 "$HOME/bin/acpi_ac" "0x0`sysctl -n hw.acpi.acline`") &
 
 # start session
 
 # start session
-if [ ! -n "$1" ]; then
+if [ -z "$1" ]; then
        session=i3
 else
        session=$1
        shift
 fi
 exec $session "$@"
        session=i3
 else
        session=$1
        shift
 fi
 exec $session "$@"
-
-# cleanup
-#TODO: trap this
-ssh-agent -k
This page took 0.037238 seconds and 4 git commands to generate.