removido
(usa Nenhuma)
Enviado em 22/10/2011 - 19:49h
1) ~/.config/openbox/autostart.sh :
## Openbox autostart.sh
## ====================
## When you login to your Openbox session, this autostart script
## will be executed to set-up your environment and launch any applications
## you want to run at startup.
##
## More information about this can be found at:
##
http://openbox.org/wiki/Help:Autostart
## Internet.
sudo pon vivo &
ping -i 5
www.google.com &
## Xcompmgr.
# xcompmgr -cCfF &
## Cairo Composite Manager.
(nohup /usr/bin/cairo-compmgr &)
## Nitrogen.
(nohup /usr/bin/nitrogen --restore &)
## PCManFM.
(nohup /usr/bin/pcmanfm --no-desktop &)
## Tint2.
# (nohup /usr/bin/tint2 &)
## Lxpanel.
(nohup /usr/bin/lxpanel &)
## Volumeicon.
(nohup /usr/bin/volumeicon &)
## Conky.
(sleep 3s && conky -q) &
(sleep 3s && conky -c .conkyrc_weather) &
## Tilda.
(sleep 3s && tilda) &
## Xscreensaver.
(nohup test `/bin/pidof xscreensaver` || /usr/bin/xscreensaver -no-splash) &
## XFCE Power Management.
(nohup /usr/bin/xfce4-power-manager &)
## Parcellite.
#(sleep 3s && parcellite) &
## Network Manager.
#(sleep 4s && nm-applet) &
## WICD.
#(nohup /usr/bin/wicd-client &)
2) ~/.xinitrc :
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
exec ck-launch-session openbox
3) ~/.bashrc (micro-bashrc):
setterm -foreground green -bold on -term linux
echo ' _ '
echo ' °v° ** Welcome to '`hostname`' **'
echo ' /(_)\ '
echo ' ^ ^ ' `date`
echo ' '
export PS1='\[{TTEXTO}33[1;34m\]\u \[{TTEXTO}33[1;32m\]@\[{TTEXTO}33[1;34m\] \h \[{TTEXTO}33[1;30m\]::\[{TTEXTO}33[1;37m\]\[{TTEXTO}33[1;30m\] '
export HISTSIZE=10000
export HISTFILESIZE=${HISTSIZE}
export HISTIGNORE="pwd:ls:ls -la:exit:bash:clear:cd:./configure:make:sudo make install:"
export HISTCONTROL=ignoredups
export HISTCONTROL=ignorespace
export HISTCONTROL=erasedups
export EDITOR=nano
export VISUAL=nano
alias editor=nano
alias vi=nano
setxkbmap -model abnt2 br
setxkbmap -option terminate:ctrl_alt_bksp
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion
fi