forked from vicfryzel/xmonad-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xmonad-session-rc
executable file
·53 lines (37 loc) · 999 Bytes
/
xmonad-session-rc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh
# Script to configure X, start common apps, and start xmonad.
# Author: Vic Fryzel
# http://github.com/vicfryzel/xmonad-config
# Configure PATH so that we can access our scripts below
export PATH="$PATH:~/.xmonad/bin"
# Configure X
xsetroot -cursor_name left_ptr &
#xrdb -merge ~/.Xdefaults &
#setxkbmap -option "ctrl:nocaps" &
# Start a window compositor. This ensures Google Chrome paints correctly.
xcompmgr -n &
# Start the system tray
tray &
# Starts tray icon for wicd-network manager
#wicd-client -t &
# Show network manager icon in tray
if [ -x /usr/bin/nm-applet ] ; then
nm-applet --sm-disable &
fi
# Starts dropbox
dropbox start &
# Set brightness percentage
#xbacklight -set 30 &
# Start menu launcher
albert &
# show battery status in tray
xfce4-power-manager &
# Start two terminals
#gnome-terminal &
# Start a browser
#google-chrome &
# Start screensaver
gnome-screensaver &
# Start sound server
pulseaudio --start --log-target=syslog &
#gnome-session &