This commit is contained in:
2017-09-01 09:53:09 +02:00
parent 3440d950a7
commit fca243e89b
32 changed files with 245 additions and 133 deletions

View File

@@ -2,13 +2,13 @@
Xcursor.theme: Vanilla-DMZ
URxvt.scrollBar: false
URxvt.font: xft:Inconsolata:size=12
URxvt.font: xft:Inconsolata:size=11
URxvt.letterSpace: -1
! clickable URLs
URxvt.perl-ext-common: default,matcher,selection-to-clipboard
URxvt.url-launcher: /usr/bin/firefox
URxvt.url-launcher: /usr/bin/firefox-trunk
URxvt.matcher.button: 1
URxvt.intensityStyles: false
@@ -24,6 +24,8 @@ URxvt.cursorBlink: true
URxvt.transparent: true
URxvt.shading: 0
! URxvt.internalBorder: 6
! Solarized color scheme for the X Window System
!
! http://ethanschoonover.com/solarized

View File

@@ -1,12 +1,5 @@
#!/bin/bash
LOGFILE="$LOGDIR/xinitrc.log"
log() {
echo "[$(date +%FT%T)] $*" >> "$LOGFILE"
}
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
@@ -22,18 +15,5 @@ start_wm() {
exec i3 -c "$HOME/.i3/config" >> "$LOGDIR/i3/i3.log"
}
autostart() {
if [[ -d "$HOME/.autostart" ]] ; then
log "Looking for autostart files."
for f in "$HOME/.autostart/"*.sh ; do
if [[ -x "$f" ]] ; then
log "Executing autostart file \"$f\""
"$f"
fi
done
fi
}
autostart
start_wm