wok annotate pekwm/stuff/etc/pekwm/start @ rev 5195
slitaz-doc: fix version for 3.0
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Mar 28 17:16:33 2010 +0200 (2010-03-28) |
parents | |
children | ff5fd8788cd9 |
rev | line source |
---|---|
jozee@2886 | 1 #!/bin/sh |
jozee@2886 | 2 # PekWM start file |
jozee@2886 | 3 # This file is a simple shell script; It gets run on pekwm startup, after |
jozee@2886 | 4 # the theme and all config has loaded if it is set executable |
jozee@2886 | 5 # (chmod +x start). |
jozee@2886 | 6 # |
jozee@2886 | 7 # This is different from ~/.xinitrc because a normal configuration of |
jozee@2886 | 8 # .xinitrc you'll run all commands, then launch the window manager last. |
jozee@2886 | 9 # |
jozee@2886 | 10 # It also gets re-run every time pekwm is restarted. |
jozee@2886 | 11 # |
jozee@2886 | 12 # As for it's usefulness, well, it's up to you. I actually set my background |
jozee@2886 | 13 # from my start file; since it runs after the theme gets loaded, this |
jozee@2886 | 14 # effectively overrides whatever's in the theme. |
jozee@2886 | 15 # |
jozee@2886 | 16 # There's probably a few other good uses for it, too. I mainly pushed for it |
jozee@2886 | 17 # because when I was doing fluxbox's docs, people used to complain that there |
jozee@2886 | 18 # wasn't one, and I wanted to avoid that for pekwm. ;) --eyez |
jozee@2886 | 19 |
jozee@2886 | 20 # DBUS message bus (automount removables devices) |
jozee@2886 | 21 dbus-launch --exit-with-session & |
jozee@2886 | 22 |
jozee@2886 | 23 #ivman |
jozee@2886 | 24 ivman & |
jozee@2886 | 25 |
jozee@2886 | 26 # Start PCmanFM as deamon for Wallpaper and desktop icons. |
jozee@2886 | 27 pcmanfm -d & |
jozee@2886 | 28 |
jozee@2886 | 29 # Start the panel. |
jozee@2886 | 30 lxpanel & |
jozee@2886 | 31 |
jozee@2886 | 32 # start tint2 taskbar and system tray |
jozee@2886 | 33 #tint2 & |
jozee@2886 | 34 |
jozee@2886 | 35 #start wbar launcher |
jozee@2886 | 36 # wbar -jumpf 0 -above-desk -pos top -nanim 3 -zoomf 3.5 -idist 10 -isize 20 -bpress -balfa 0 & |
jozee@2886 | 37 |
jozee@2886 | 38 # Start Pacellite clipboard. |
jozee@2886 | 39 #parcellite & |
jozee@2886 | 40 |
jozee@2886 | 41 # Desktop effects |
jozee@2886 | 42 #xcompmgr -c -r 10 & |
jozee@2886 | 43 |
jozee@2886 | 44 # Set a background image using hsetroot (depends on imlib2). |
jozee@2886 | 45 #hsetroot -fill /usr/share/images/slitaz-background.png & |
jozee@2886 | 46 |
jozee@2886 | 47 # Background color with xsetroot. |
jozee@2886 | 48 #xsetroot -solid "#222222" & |
jozee@2886 | 49 |
jozee@2886 | 50 # Fix keyboard if special keys (Win or Super, Delete etc) are not automatically identified by Xvesa (also needs evdev) |
jozee@2886 | 51 # setxkbmap -model evdev & |
jozee@2886 | 52 |
jozee@2886 | 53 |