wok diff pekwm/stuff/etc/pekwm/start @ rev 11681

Up: grep to 2.10. It depends on pcre.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 18 08:15:31 2012 -0500 (2012-02-18)
parents
children ff5fd8788cd9
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/pekwm/stuff/etc/pekwm/start	Sat Feb 18 08:15:31 2012 -0500
     1.3 @@ -0,0 +1,53 @@
     1.4 +#!/bin/sh
     1.5 +# PekWM start file
     1.6 +# This file is a simple shell script; It gets run on pekwm startup, after 
     1.7 +# the theme and all config has loaded if it is set executable
     1.8 +# (chmod +x start).
     1.9 +#
    1.10 +# This is different from ~/.xinitrc because a normal configuration of 
    1.11 +# .xinitrc you'll run all commands, then launch the window manager last.
    1.12 +#
    1.13 +# It also gets re-run every time pekwm is restarted.
    1.14 +# 
    1.15 +# As for it's usefulness, well, it's up to you. I actually set my background
    1.16 +# from my start file; since it runs after the theme gets loaded, this 
    1.17 +# effectively overrides whatever's in the theme.
    1.18 +# 
    1.19 +# There's probably a few other good uses for it, too. I mainly pushed for it
    1.20 +# because when I was doing fluxbox's docs, people used to complain that there
    1.21 +# wasn't one, and I wanted to avoid that for pekwm. ;) --eyez
    1.22 +
    1.23 +# DBUS message bus (automount removables devices)
    1.24 +dbus-launch --exit-with-session &
    1.25 +
    1.26 +#ivman
    1.27 +ivman &
    1.28 +
    1.29 +# Start PCmanFM as deamon for Wallpaper and desktop icons.
    1.30 +pcmanfm -d &
    1.31 +
    1.32 +# Start the panel.
    1.33 +lxpanel &
    1.34 +
    1.35 +# start tint2 taskbar and system tray
    1.36 +#tint2 &
    1.37 +
    1.38 +#start wbar launcher
    1.39 +# wbar -jumpf 0 -above-desk -pos top -nanim 3 -zoomf 3.5 -idist 10 -isize 20 -bpress -balfa 0 &
    1.40 +
    1.41 +# Start Pacellite clipboard.
    1.42 +#parcellite &
    1.43 +
    1.44 +# Desktop effects
    1.45 +#xcompmgr -c -r 10 &
    1.46 +
    1.47 +# Set a background image using hsetroot (depends on imlib2).
    1.48 +#hsetroot -fill /usr/share/images/slitaz-background.png &
    1.49 +
    1.50 +# Background color with xsetroot.
    1.51 +#xsetroot -solid "#222222" &
    1.52 +
    1.53 +# Fix keyboard if special keys (Win or Super, Delete etc) are not automatically identified by Xvesa (also needs evdev)
    1.54 +# setxkbmap -model evdev &
    1.55 +
    1.56 +