]> git.sev.monster Git - dotfiles.git/blame_incremental - base/.xinitrc
refactor submodules, add xorg, small fixes & changes
[dotfiles.git] / base / .xinitrc
... / ...
CommitLineData
1#!/bin/sh
2
3sysmodmap=/usr/local/etc/X11/xinit/.Xmodmap
4sysresources=/usr/local/etc/X11/xinit/.Xresources
5usermodmap="$HOME/.Xmodmap"
6userresources="$HOME/.Xresources"
7
8if [ -f $sysresources ]; then
9 xrdb -merge $sysresources
10fi
11if [ -f $sysmodmap ]; then
12 xmodmap $sysmodmap
13fi
14if [ -f "$userresources" ]; then
15 xrdb -merge "$userresources"
16fi
17if [ -f "$usermodmap" ]; then
18 xmodmap "$usermodmap"
19fi
20
21# redshift, root image
22redon &
23"$HOME/.fehbg"
24
25# Xorg settings
26xset r rate 290 26 &
27xset m 1/1 0 &
28xset s off
29xset dpms 0 0 600
30xset +fp ${XDG_DATA_HOME:-~/share}/fonts/Dina/
31xset fp rehash
32
33# root terminal
34urxvt -name TermBg1 -override-redirect -geometry x5+0--1 \
35 -e tail -F /var/log/messages &
36xdotool search --limit 1 --sync --classname TermBg1 windowsize --usehints 100% 6
37
38# tray icons
39#"$HOME/src/phwmon/phwmon.py" --mem --mem_percent --net --io --bg \#0000 &
40volumeicon &
41
42# daemons
43dunst &
44mpc-notify -d &
45xautolock -time 10 -locker "$HOME/bin/l" &
46xbanish &
47eval `ssh-agent`
48
49if [ -x /usr/local/bin/urxvtd ]; then
50 for i in 1 2; do
51 # try to start client twice, once before checking for daemon
52 # and another after trying to start it
53 urxvtc -e exit
54 if [ $? -eq 2 ]; then
55 # daemon not started, attempt to start once
56 if [ $i -eq 1 ]; then
57 urxvtd -q -o -f
58 fi
59 else
60 TERMINAL=/usr/local/bin/urxvtc
61 export TERMINAL
62 break
63 fi
64 done
65 unset i
66fi
67
68# try to wait for session to start
69#(sleep 0.1 && tint2) &
70#(sleep 0.1 && yabar -c "$HOME/etc/yabar/yabar.conf") &
71#x220t
72(sleep 0.1 && [ -x "$HOME/bin/acpi_ac" ] && \
73 "$HOME/bin/acpi_ac" "0x0`sysctl -n hw.acpi.acline`") &
74(sleep 1.5 && [ -x /usr/local/bin/conky ] && conky -c "$HOME/.conkyrc.d/dock") &
75
76# load any global scripts
77if [ -d /usr/local/etc/X11/xinit/xinitrc.d ]; then
78 for f in /usr/local/etc/X11/xinit/xinitrc.d/?*.sh; do
79 [ -x "$f" ] && . "$f"
80 done
81 unset f
82fi
83
84# start session
85if [ ! -n "$1" ]; then
86 session=i3
87else
88 session=$1
89 shift
90fi
91exec $session "$@"
92
93# cleanup
94#TODO: trap this
95ssh-agent -k
This page took 0.408688 seconds and 4 git commands to generate.