The thing I'm having difficulty right now is that my drives are not showing up on the filemanager and I dunno which service I need to enable on startup that would automatically detect drives and mount them for me.
I have tried all different filemanagers from pcmanfm to nautilus etc. but all of them have the same problem...but I can see that the usb drives or even external hard drives are detected cos it shows up in the list when I do fdisk -l
Okay and this is the openbox autostart script
Code: Select all
## Openbox autostart.sh
## ====================
## When you login to your CrunchBang Openbox session, this autostart script
## will be executed to set-up your environment and launch any applications
## you want to run at startup.
##
## Note*: some programs, such as 'nm-applet' are run via XDG autostart.
## Run '/usr/lib/openbox/openbox-xdg-autostart --list' to list any
## XDG autostarted programs.
##
## More information about this can be found at:
## http://openbox.org/wiki/Help:Autostart
##
## If you do something cool with your autostart script and you think others
## could benefit from your hack, please consider sharing it at:
## http://crunchbang.org/forums/
##
## Have fun & happy CrunchBangin'! :)
## GNOME PolicyKit and Keyring
eval $(gnome-keyring-daemon -s --components=pkcs11,secrets,ssh,gpg) &
## Set root window colour
hsetroot -solid "#2E3436" &
tilda &
## Group start:
## 1. nitrogen - restores wallpaper
## 2. compositor - start
## 3. sleep - give compositor time to start
## 4. tint2 panel
(\
nitrogen --restore && \
cb-compositor --start && \
sleep 2s && \
tint2 \
) &
## Volume control for systray
(sleep 2s && pnmixer) &
## Volume keys daemon
#mate-volume-control &
mate-volume-control-appet &
## Enable power management
xfce4-power-manager &
/usr/libexec/gnome-fallback-mount-helper &
## Start Thunar Daemon
thunar --daemon &
## Detect and configure touchpad. See 'man synclient' for more info.
if egrep -iq 'touchpad' /proc/bus/input/devices; then
synclient VertEdgeScroll=1 &
synclient TapButton1=1 &
fi
## Start xscreensaver
xscreensaver -no-splash &
## Start Clipboard manager
(sleep 3s && clipit) &
## Set keyboard settings - 250 ms delay and 25 cps (characters per second) repeat rate.
## Adjust the values according to your preferances.
xset r rate 250 25 &
## Turn on/off system beep
xset b off &
## Run the conky
conky -q &