33 lines
680 B
Bash
33 lines
680 B
Bash
#!/bin/bash
|
|
|
|
export PATH=$HOME/bin:$PATH
|
|
xrdb -merge .Xdefaults &
|
|
|
|
#gnome-settings-daemon &
|
|
#xscreensaver -no-splash &
|
|
#kupfer --no-splash &
|
|
rofi -key-run control-space -fuzzy -terminal run_terminal &
|
|
nm-applet &
|
|
gnome-sound-applet &
|
|
#setxkbmap -option ctrl:nocaps &
|
|
xmodmap ~/.xmodmap &
|
|
synclient PalmDetect=1
|
|
|
|
# Running a really minimal arch system? This helps:
|
|
|
|
/usr/lib/xfce4/notifyd/xfce4-notifyd &
|
|
pulseaudio --start &
|
|
blueman-applet &
|
|
#wicd-gtk --tray &
|
|
|
|
if [ -f ~/.xrandrrc ]; then
|
|
~/.xrandrrc
|
|
fi
|
|
|
|
~/.fehbg &
|
|
if command -v compton &>/dev/null; then
|
|
compton -b --config ~/.compton.conf &
|
|
fi
|
|
#exec awesome
|
|
exec i3
|
|
#exec dbus-launch --sh-syntax --exit-with-session i3
|