Advertisement
Guest User

Untitled

a guest
May 19th, 2012
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.04 KB | None | 0 0
  1. MODKEY=Mod4
  2.  
  3. export WMII_NORMCOLORS='#00aa00 #000000 #222222'
  4. export WMII_FOCUSCOLORS='#00ff00 #222222 #444444'
  5.  
  6. export WMII_FONT='fixed'
  7.  
  8. feh --bg-tile /home/b/Pictures/Backgrounds/mountains.jpg
  9.  
  10.  
  11. local_events() {
  12.     cat <<'!'
  13.  
  14. KeyGroup B Custom
  15. Key $MODKEY-Control-space
  16.     /home/b/Apps/chkb.py cycle
  17. Key $MODKEY-r
  18.     /home/b/Apps/scrnsht.sh
  19. Key Mod1-Control-Delete
  20.     xscreensaver-command -lock
  21. !
  22. }
  23.  
  24. # Status Bar Info
  25. status() {
  26.     echo -n 'Fans': 'Chassis '$(sensors | grep 'fan2' | awk '{print $2}') 'rpm' '-' 'CPU' $(sensors | grep 'fan1' | awk '{print $2}') 'rpm' '|' 'CPUTemp:' $(sensors | grep Core | awk '{printf "%.0f\n", $3}') '|' 'GPUTemp:' $(aticonfig --od-gettemperature | grep Temp | awk '{printf "%.0f\n", $5}') '|' 'CPUMHz:' $(cat /proc/cpuinfo | grep MHz | awk '{printf "%.0f\n", $4}') '|' '/:' $(df -h | grep sda1 | awk '{print $3}') '|' '/big:' $(df -h | grep sdb5 | awk '{print $3}') '|' 'RAM:' $(free -m | grep -i /cache | awk '{print $3}') 'MB |' $(uptime | sed 's/.*://; s/,//g') '|' $(date +"%a %b %d %H:%M")
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement