You are not logged in.
September proved to be another great month for desktop screenshots. Thanks to all for their contributions and discussion. I always enjoy following the progress of these threads each month 
Thank you also to everyone for sticking to the thumbnail images in this thread. Please continue to use thumbnails linking to the larger image to help those of us with slow connections. An example of the code needed is below. Most image hosting websites will automatically generate this for you as well.

Enjoy
omns 
Offline
Something different to start this month. Shot below looks much like many of my posts before except it's not Openbox. This week after spending some time recently working with the latest Zenwalk and xfce I decided to try and reproduce the same thing with Crunchbang. Basically I installed a minimal xfce then stripped out the openbox and lxde components. Still using tint2 and conky with xfdesktop instead of nitrogen. Being a fan of a few subtle transparencies/compositing, I find this an ideal environment 
Offline
Offline
I like it !
I think i'll hava a look at zenwalk
.. zenrun@zenwalk 
Last edited by zenrun (2009-09-30 15:33:58)
coffee fanboy.
Offline
It's still September here for 6 hours!
HANNA (without "h" in the end) likes green and #! 
Also know as ultraturquoise online / #! last.fm / #! DeviantART / U
Offline
Offline
Whats that menu? With the icons in it?
I think it is the xfce menu.
Last edited by craigh (2009-09-30 15:30:11)
Running Crunchbang on eee pc 701 and Dell Mini 10v.
Offline
WaterRatj wrote:Whats that menu? With the icons in it?
I think it is the xfce menu.
Damn, no luck then 
To bad there isn't one for openbox with icons
Offline
ADcomp, be careful with it, it is beautiful but rather capricious. At least my compiz+awn setup were. Make sure you do not launch anything that could interfere with compositing, i ruined my setup couple of times with wesnoth and something else i do not remember.
Offline
My Fluidr (= Fickr) : http://www.fluidr.com/photos/kookadimi/sets
Offline
Well...
gtk: perfection
pekwm theme: my own
font: BasicDots
icons: WhiteReflections (modded)
wallpaper: http://ether.deviantart.com/art/overture-123196302
HANNA (without "h" in the end) likes green and #! 
Also know as ultraturquoise online / #! last.fm / #! DeviantART / U
Offline
Offline
My artwork at deviantART | My Tweet | My upcoming web page
Crea diem!
Lenovo ThinkPad E320 | 8GB | 120GB Samsung 840 SSD | Xubuntu 12.10 & #! Waldorf
Offline
Offline
Well...
gtk: perfection
pekwm theme: my own
font: BasicDots
icons: WhiteReflections (modded)
wallpaper: http://ether.deviantart.com/art/overture-123196302
You care to share your MOCP conky script and conkyrc? I really like how you've got it setup!
Offline
sure here:
# set to yes if you want Conky to be forked in the background
background yes
# Use Xft?
use_xft yes
# Xft font when Xft is enabled
xftfont Basicdots:size=7
# Text alpha when using Xft
xftalpha 1
# Update interval in seconds
update_interval 1
# This is the number of times Conky will update before quitting.
# Set to zero to run forever.
total_run_times 0
# Create own window instead of using desktop (required in nautilus)
own_window yes
own_window_transparent yes
own_window_type desktop
own_window_hints undecorated, below,sticky,skip_taskbar,skip_pager
# Use double buffering (reduces flicker, may not work for everyone)
double_buffer yes
text_buffer_size 1024
# Minimum size of text area
minimum_size 400 210
# Maximum width
maximum_width 400
# Draw shades?
draw_shades no
# Draw outlines?
draw_outline no
# Draw borders around text
draw_borders no
# Draw borders around graphs
draw_graph_borders no
# Stippled borders?
stippled_borders 0
# border margins
border_margin 3
# border width
border_width 0
# Default colors and also border colors
default_color F0ECE4
#default_color D1E2B4
default_shade_color black
default_outline_color white
own_window_color 555555
# Text alignment, other possible values are commented
#alignment top_left
#alignment top_right
alignment bottom_left
#alignment bottom_right
#alignment bottom_middle
#alignment none
# Gap between borders of screen and text
# same thing as passing -x at command line
gap_x 10
gap_y 5
# Subtract file system buffers from used memory?
no_buffers yes
# set to yes if you want all text to be in uppercase
uppercase no
# number of cpu samples to average
# set to 1 to disable averaging
cpu_avg_samples 2
# Force UTF8? note that UTF8 support required XFT
override_utf8_locale yes
TEXT
${font BasicDots:size=20}NAME
${voffset -12}${font}CPU : ${cpubar cpu0 5,45} ${cpu cpu0}%
RAM : ${membar 5,45} ${memperc}%
Home : ${fs_free /home}/${fs_size /home}
Root : ${fs_free /}/${fs_size /}
>> : ${upspeed wlan0}kb/s
<< : ${downspeed wlan0}kb/s
${font BasicDots:size=20}MOCP
${voffset -12}${font}${execpi 1 mocp -Q %state}
What: ${execpi 1 mocp -Q %song}
Who: ${execpi 1 mocp -Q %artist}
Where: ${execpi 1 mocp -Q %album}
How long: ${execpi 1 mocp -Q %tl} / ${execpi 1 mocp -Q %tt}
CITY A : ${execi 3600 ~/path/to/conky_rss.sh "http://www.rssweather.com/..." 1 1 }
CiTY B: ${execi 3600 ~/path/to/conky_rss.sh "http://www.rssweather.com/..." 1 1 }
${font BasicDots:size=23}${time %H:%M:%S}${font BasicDots:size=13} / ${time %d %b %Y}weather stuff (orig from: http://ubuntuforums.org/showpost.php?p= … ount=6354)
#!/bin/bash
# RSS Display Script by Bill Woodford (admin@sdesign.us) v1.0
#
#RSS Setup - Don't change unless you want these values hard-coded!
uri=$1 #URI of RSS Feed
lines=$2 #Number of headlines
titlenum=$3 #Number of extra titles
#Script start
#Require a uri, as a minimum
if [[ "$uri" == "" ]]; then
echo "No URI specified, cannot continue!" >&2
echo "Please read script for more information" >&2
else
#Set defaults if none specified
if [[ $lines == "" ]]; then lines=25 ; fi
if [[ $titlenum == "" ]]; then titlenum=2 ; fi
#The actual work
curl -s --connect-timeout 30 $uri |\
sed -e 's/<\/description>/\n/g' |\
grep -o '<description>.*' |\
sed -e 's/<description>//' |\
head -n $(($lines + $titlenum)) |\
tail -n $(($lines))
fiHANNA (without "h" in the end) likes green and #! 
Also know as ultraturquoise online / #! last.fm / #! DeviantART / U
Offline
I'm starting to see the allure of the #! Xfce combination, very nice Omns and ADComp.
Offline
Offline
Offline
A little off topic but:
Hanna, what version of MOC are you using ? I have moc 2.2.4 and it doesn't have the -Q option.
Offline
Offline
Offline
Offline
Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.