#!/bin/sh # PekWM start file # This file is a simple shell script; It gets run on pekwm startup, after # the theme and all config has loaded if it is set executable # (chmod +x start). # # This is different from ~/.xinitrc because a normal configuration of # .xinitrc you'll run all commands, then launch the window manager last. # # It also gets re-run every time pekwm is restarted. # # As for it's usefulness, well, it's up to you. I actually set my background # from my start file; since it runs after the theme gets loaded, this # effectively overrides whatever's in the theme. # # There's probably a few other good uses for it, too. I mainly pushed for it # because when I was doing fluxbox's docs, people used to complain that there # wasn't one, and I wanted to avoid that for pekwm. ;) --eyez exec /lib/ufw/ufw-init start & exec stjerm -k f8 -o 50 -fg 00e8ff -ah 0 -p left -h 800 -w 700 & exec stjerm -k f9 -o 50 -fg 00e8ff -ah 0 -p right -h 800 -w 700 & exec stjerm -k f12 -o 50 -fg 00e8ff -ah 0 -p top -h 500 -w 700 & exec stjerm -k f10 -o 50 -fg 00e8ff -ah 0 -p bottom -h 500 -w 700 & exec xset led 3 & exec xcompmgr & exec spacefm --desktop & exec xfce4-panel & sleep 1 exec megasync & exec $HOME/.animatedBGstarter.sh & sleep 1 exec $HOME/.animatedBGstarter2.sh & exec pulseaudio --start &