You are not logged in.

#2176 2012-06-26 18:27:06

Guilherme David
Member
Registered: 2011-12-01
Posts: 8

Re: Share your Openbox Desktop ! :)

Hey guys, this one is mine big_smile
Thanks Z3bra, i made a new fresh install and decided to use your conky configs!
I changed a bit tho, and i am planing to change more few things (One major change was the gmail script, i wrote it in Python 3 so i can extend it later)

1zywGl.jpg

I plan on using that top empty space for a "Mini In-house Render Farm" Status later on.
And i want to point it out that, at least here, the conky instances texts are not horizontally aligned and your tar file dont seen to have the to-do script at all.

Last edited by Guilherme David (2012-06-26 18:29:16)

Offline

#2177 2012-06-26 19:22:32

z3bra
Member
From: France
Registered: 2012-03-19
Posts: 41
Website

Re: Share your Openbox Desktop ! :)

Nice dude ! I guess the alignement is because of the font you use (Mine is actually rough_typewriter @dafont.com.
As it's a kind of "weird" font, it's not quite aligned with serif, monospace, etc...

for the tar file, i just looked and the todo script is in .conkytheme/z3bra/scripts/todo.sh. If it don't load, it's probably because the conkyrc_todo use the path ~/bin/todo.sh to make it works (my scripts path btw ^^), but I forgot to point it out in the README, I promise it will be added wink thanks then big_smile

But thanks dude for enjoying my conky wink I'll be glad to see how you can improve it (And maybe add some of your cool stuffs to mine tongue)

Enjoy yourself !


EDIT : In fact, the font is URW Gothic L, rought_typewriter was the old one ^^

Last edited by z3bra (2012-06-26 19:25:41)


Hobbes: Shouldn't we read the instructions?
Calvin: Do I look like a sissy ?

Offline

#2178 2012-06-26 20:28:33

Guilherme David
Member
Registered: 2011-12-01
Posts: 8

Re: Share your Openbox Desktop ! :)

If you want something let me know its the least i could do ofc. I will do a new post when i finish it all with more details.

The align problem is about the conky margins, but i guess its a matter of preference, i checked your desktop images and its not aligned as well.
Btw, i downloaded the file again and cant find the script!

Offline

#2179 2012-06-26 20:38:48

z3bra
Member
From: France
Registered: 2012-03-19
Posts: 41
Website

Re: Share your Openbox Desktop ! :)

Well, something went wrong then...

Here is the script then smile

#
# ~/bin/todo.sh
#

usage() {
    cat << HELPEOF
    $(tput bold)$(tput setaf 3)
    $0 [-lh] [-r {expr | ligne}] [ <tâche> ]
    $(tput setaf 1)
        OPTIONS :$(tput sgr0)
            -r {expr | num} : Supprimer la tâche contenant l'expression 
                                ou
                              Supprimer la tâche de la ligne n°'num'
            -c              : Réinitialiser le fichier de tâches
            -l              : Lister toutes les tâches
            -h              : Afficher cette aide
HELPEOF
}

remove_task() {
    arg=$1 
    [ $arg -eq 0 ] 2> /dev/null 
    if [ $? -eq 0 -o $? -eq 1 ] ; then
        LINE=`sed -n "$arg p"  ~/.todo`
        sed -i "$arg d" ~/.todo
        echo "La ligne \"$(tput bold)$LINE$(tput sgr0)\" a bien été supprimée"
    else
        LINES=`cat ~/.todo | grep $arg | wc -l`
        if [ $LINES == 1 ]; then
            LINE=`cat ~/.todo | grep $arg`
            sed -i "/$arg/d" ~/.todo
            echo "La ligne \"$(tput bold)$LINE$(tput sgr0)\" a bien été supprimée"
        else
            echo "L'expression \"$arg\" ne permet pas d'identifier un tâche unique"
            echo "Veuillez préciser votre expression"
            exit 0
        fi
    fi
}

if [ ! -f ~/.todo ]; then
    touch ~/.todo
fi

OPTIONS=0

while getopts ":r:clh" OPT; do

    OPTIONS=1

    case $OPT in
        r)
            remove_task $OPTARG
            ;;
        c)  
            sed -i "d" ~/.todo 
            echo "Le fichier de tâches a été entièrement vidé"
            ;;
        l)
            cat -n ~/.todo
            ;;
        h)
            usage
            exit 1
            ;;
        *)
            echo "$(tput setaf 1)Option \"$OPTARG\" inexistante$(tput sgr0)"
            usage
            exit 0
            ;;
        :)
            echo "$(tput setaf 1)L'option \"$OPTARG\" nécessite un argument$(tput sgr0)"
            usage
            exit 0
            ;;
    esac
done

shift $((OPTIND-1))

if [[ $OPTIONS == 0 && $# > 0 ]]; then
    echo $@ >> ~/.todo
fi

Hobbes: Shouldn't we read the instructions?
Calvin: Do I look like a sissy ?

Offline

#2180 2012-06-29 05:10:21

Ladd
Member
Registered: 2011-11-16
Posts: 2

Re: Share your Openbox Desktop ! :)

p5Q4U.jpg U6fIP.jpg HAZKf.jpg

A "slightly" edited cross-post from the June 2012 Screenshots thread...

Running Applications:
Cairo-Dock
Compton (composite manager)
DeaDBeeF
Firefox
Thunar
urxvt (with inconsolata font)

MISC:
Cairo-Dock Icons
Cursor Icons
GTK and Openbox Themes: rent0n86's Beautiful Moka Themes
Thunar Icons

Last edited by Ladd (2012-06-29 05:31:34)

Offline

#2181 2012-07-01 02:22:41

cirnOS
Member
Registered: 2010-03-01
Posts: 107

Re: Share your Openbox Desktop ! :)

Guilherme David wrote:

Hey guys, this one is mine big_smile
Thanks Z3bra, i made a new fresh install and decided to use your conky configs!
I changed a bit tho, and i am planing to change more few things (One major change was the gmail script, i wrote it in Python 3 so i can extend it later)

http://i.imgur.com/1zywGl.jpg

I plan on using that top empty space for a "Mini In-house Render Farm" Status later on.
And i want to point it out that, at least here, the conky instances texts are not horizontally aligned and your tar file dont seen to have the to-do script at all.


I love your conky setup. Will you be willing to share your configs? smile

Offline

#2182 2012-07-01 19:45:30

z3bra
Member
From: France
Registered: 2012-03-19
Posts: 41
Website

Re: Share your Openbox Desktop ! :)

Hi cirnOS !

As he said, he used my conky config which actually looks like this :

conky z3bra

To avoid him re-creating the archive, I give you the link to download my config as I first sent it big_smile

z3bra wrote:

...

Yeah sorry for the inconvenience... Here is the link : Conky archive

I hope you will enjoy it wink Don't forget it needs conky-lua from AUR to enjoy the ring-based clock !

...

Same as usual, "tar xvzf z3bra.tar" in your home directory, and launch the conky_start.sh script !

Feel free to go back to the previous pages to follow the whole conversation ^^

EDIT: I forgot to say that, in the archive, the color-theme is orange !!
EDIT2: As I didn't make any change to the archive, the todo.sh script used by conkyrc_todo is given above wink

Last edited by z3bra (2012-07-01 20:06:29)


Hobbes: Shouldn't we read the instructions?
Calvin: Do I look like a sissy ?

Offline

#2183 2012-07-02 13:18:56

omgitsaheadcrab
Member
Registered: 2012-06-21
Posts: 6

Re: Share your Openbox Desktop ! :)

My first openbox desktop, compiled using random elements taken mainly from other examples in this thread big_smile

Clean:
clean

Dirty:
dirty

Programs used/visible:
Tint2
Conkywx
NotifyOSD
Conky arch time from https://bbs.archlinux.org/viewtopic.php … 0#p1079460
FFox
Thunar
Emacs
Qualculate
Guake

Themes:
GTK & Openbox Nightingale Themes


moderator edit: Welcome to the forums. The images are too large. Please read Forum Etiquette: Pasting Pictures and Code and screenshot posting rules. Thanks. --fsckd

Last edited by fsckd (2012-07-02 14:05:48)

Offline

#2184 2012-07-12 11:59:02

carukia
Member
From: ~/United_Kingdom/Liverpool
Registered: 2011-05-15
Posts: 162

Re: Share your Openbox Desktop ! :)

2012_07_12_1342093067_1024x600_scrot.jpg

2012_07_12_1342093554_1024x600_scrot.jpg

Tint2 Config

#---------------------------------------------
# TINT CONFIG FILE
#---------------------------------------------

#---------------------------------------------
# BACKGROUND AND BORDER
#---------------------------------------------
rounded = 0
border_width = 0
background_color = #000000 50
border_color = #212121 0

#rounded = 1
#border_width = 3
#background_color = #ffffff 20
#border_color = #ffffff 15

#rounded = 1
#border_width = 0
#background_color = #000000 35
#border_color = #ffffff 0


#---------------------------------------------
# PANEL
#---------------------------------------------
panel_monitor = 1
panel_position = bottom center
panel_size = 100% 30

panel_margin = 0 0
panel_padding = 0 0
font_shadow = 0
panel_background_id = 1

#---------------------------------------------
# TASKBAR
#---------------------------------------------
taskbar_mode = single_desktop
taskbar_padding = 3 3
taskbar_background_id = 1

#---------------------------------------------
# TASKS
#---------------------------------------------
task_icon = 1
task_text = 1
task_width = 270
task_centered = 1
task_padding = 6 3
task_font = Architects Daughter 8
task_font_color = #ffffff 80
task_active_font_color = #ffffff 100
task_background_id = 0
task_active_background_id = 0

#---------------------------------------------
# SYSTRAY
#---------------------------------------------
systray_padding =  5 4
systray_icon_opacity = 90
systray_background_id = 1
systray_icon_size = 14
#---------------------------------------------
# CLOCK
#---------------------------------------------
time1_format = %H:%M
time1_font = Rock Salt 10
#time2_format = %A %d %B
#time2_font = Segoe UI 7
clock_font_color = #ffffff 100
clock_padding = 6 0
clock_background_id = 1

#---------------------------------------------
# MOUSE ACTION ON TASK
#---------------------------------------------
mouse_middle = close
mouse_right = iconify
mouse_scroll_up = toggle
mouse_scroll_down = iconify

Wallpaper
Elegant Arch GTK
AwOken
Black Coal Openbox Theme

Offline

#2185 2012-07-14 04:12:10

PhilipWitte
Member
Registered: 2012-02-03
Posts: 45

Re: Share your Openbox Desktop ! :)

Guilherme David wrote:

Hey guys, this one is mine big_smile
Thanks Z3bra, i made a new fresh install and decided to use your conky configs!
I changed a bit tho, and i am planing to change more few things (One major change was the gmail script, i wrote it in Python 3 so i can extend it later)

http://i.imgur.com/1zywGl.jpg

I plan on using that top empty space for a "Mini In-house Render Farm" Status later on.
And i want to point it out that, at least here, the conky instances texts are not horizontally aligned and your tar file dont seen to have the to-do script at all.

Awesome! Can I get a link to that wallpaper?

Offline

#2186 2012-07-20 14:11:57

Matty265
Member
Registered: 2010-01-28
Posts: 25

Re: Share your Openbox Desktop ! :)

Switched from Gnome 3 to Openbox yesterday and i'm really satisfied with it!
I just don't know why some icons (for example the banshee icons on the left side) don't work. I use the Faience Azur icon set, but the gnome-color ones don't work either (Picture 1). Am i missing some packages?

GTK: Clearlooks (for the moment)
Openbox-Theme: 1977-Grey
Icons: Faience Azure

mhpUVs.png
P4UCVs.png
D7AvLs.png

Last edited by Matty265 (2012-07-20 14:12:48)

Offline

#2187 2012-07-21 09:11:14

HungGarTiger
Member
From: nz/auckland/
Registered: 2012-06-27
Posts: 187

Re: Share your Openbox Desktop ! :)

z3bra, I must also thank you for the use of your scripts

ArV4fQ.jpg

Here is my final (so far) setup

Openbox theme - Turqiouse Nights
GTK Theme - NOX
Icons - Clarity

Thats it I believe


"No sympathy for the devil. If you buy the ticket, take the ride."
- Hunter S. Thompson

Offline

#2188 2012-07-26 01:33:08

hsngrms
Member
From: Turkey
Registered: 2012-03-06
Posts: 41
Website

Re: Share your Openbox Desktop ! :)

tZXZiMw

tZXZiNA

arch linux + openbox + tint2 (default theme, bottom) + wbar (top) + google-gadgets-gtk (left) + conky (right) + elementary dark gtk theme + mire blue openbox theme + faenza icon theme + pulse-glass cursor theme + droid sans font

Offline

#2189 2012-07-26 14:56:54

lqs
Member
Registered: 2012-07-25
Posts: 14

Re: Share your Openbox Desktop ! :)

amazing!
arch + openbox!

Offline

#2190 2012-07-27 10:43:29

marcinz
Member
Registered: 2012-04-07
Posts: 35

Re: Share your Openbox Desktop ! :)

Netbook Arch wink
terminal:
HDsGws.png
fullscreen chromium:
yJTrqs.png

Offline

#2191 2012-07-27 11:37:22

engelus
Member
From: Salta - Argentina
Registered: 2011-06-11
Posts: 46

Re: Share your Openbox Desktop ! :)

My Notebook this Month:
xcompmgr +tint2 svn +conky +wbar

Clean:
tZXZ4eQ

Dirty:
tZXZ5MA

Last edited by engelus (2012-07-27 11:37:39)

Offline

#2192 2012-07-28 14:45:17

VInze
Member
From: Sneek
Registered: 2012-07-26
Posts: 19

Re: Share your Openbox Desktop ! :)

My freshly installed Arch system smile

Clean:
tZXdkag

Dirty:
tZXdkaw

What do you see?
Openbox + Tint2 svn
Conky
Terminator & Thunar
Faenza icon theme
Zukitwo GTK theme
Selfmade Openbox theme
Wallpaper: http://fiftyfootshadows.net/2011/02/02/ … er-picnic/

Last edited by VInze (2012-07-28 14:46:37)

Offline

#2193 2012-07-31 21:44:46

ss2
Member
Registered: 2007-10-05
Posts: 83

Re: Share your Openbox Desktop ! :)

Here goes my set up. After clearing out some mess and getting rid off unused stuff from past days:

clean:
hGEObs.png
dirty:
vH3Ems.png

menu.xml

<?xml version="1.0" encoding="UTF-8"?>
<openbox_menu xmlns="http://openbox.org/3.4/menu">
	<menu id="apps-tools-menu" label="Tools">
		<item label="Character Map">
			<action name="Execute">
				<command>gnome-character-map</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
		<item label="File Roller">
			<action name="Execute">
				<command>file-roller</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
		<item label="gedit">
			<action name="Execute">
				<command>gedit</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
		<item label="pyRenamer">
			<action name="Execute">
				<command>pyrenamer</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
		<separator />
		<item label="Stundenplan">
			<action name="Execute">
				<command>feh /home/ss2/Documents/Studies/BOS/12-04/Stundenplan.png</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
	</menu>
	<menu id="apps-games-menu" label="Games">
		<item label="supertuxkart">
			<action name="Execute">
				<command>/usr/games/supertuxkart</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
		<item label="The Battle of Wesnoth">
			<action name="Execute">
				<command>wesnoth</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
	</menu>
	<menu id="apps-net-menu" label="Internet">
		<item label="Opera">
			<action name="Execute">
				<command>opera</command>
				<startupnotify>
					<enabled>yes</enabled>
					<wmclass>Opera</wmclass>
				</startupnotify>
			</action>
		</item>
		<item label="Firefox">
			<action name="Execute">
				<command>firefox</command>
				<startupnotify>
					<enabled>yes</enabled>
					<wmclass>Firefox</wmclass>
				</startupnotify>
			</action>
		</item>
		<item label="Pidgin">
			<action name="Execute">
				<command>pidgin</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
		<item label="Transmission">
			<action name="Execute">
				<command>transmission-gtk</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
	</menu>
	<menu id="apps-vm-menu" label="Machines">
		<item label="VirtualBox">
			<action name="Execute">
				<command>VirtualBox</command>
				<startupnotify>
					<enabled></enabled>
				</startupnotify>
			</action>
		</item>
		<separator />
		<item label="t23">
			<action name="Execute">
				<command>/usr/lib/virtualbox/VirtualBox --comment "t23" --startvm "2b747b16-dd5b-49cb-aab7-5e5dcea7b847"</command>
				<startupnotify>
					<enabled></enabled>
				</startupnotify>
			</action>
		</item>
	</menu>
	<menu id="apps-office-menu" label="Office">
		<item label="LibreOffice">
			<action name="Execute">
				<command>soffice --nologo</command>
				<startupnotify>
					<enabled>no</enabled>
				</startupnotify>
			</action>
		</item>
		<item label="Evolution">
			<action name="Execute">
				<command>evolution</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
		<item label="ePDFView">
			<action name="Execute">
				<command>epdfview</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
	</menu>
	<menu id="apps-multimedia-menu" label="Multimedia">
		<item label="Banshee">
			<action name="Execute">
				<command>banshee</command>
				<startupnotify>
					<enabled></enabled>
				</startupnotify>
			</action>
		</item>
		<item label="EasyTAG">
			<action name="Execute">
				<command>easytag</command>
				<startupnotify>
					<enabled></enabled>
				</startupnotify>
			</action>
		</item>
		<item label="Sonata">
			<action name="Execute">
				<command>sonata</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
		<item label="SoundConverter">
			<action name="Execute">
				<command>soundconverter</command>
				<startupnotify>
					<enabled></enabled>
				</startupnotify>
			</action>
		</item>
		<item label="VLC">
			<action name="Execute">
				<command>vlc</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
	</menu>
	<menu id="apps-graphics-menu" label="Graphics">
		<item label="digiKam">
			<action name="Execute">
				<command>digikam</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
		<item label="Gimp">
			<action name="Execute">
				<command>gimp</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
		<item label="Blender">
			<action name="Execute">
				<command>blender</command>
				<startupnotify>
					<enabled></enabled>
				</startupnotify>
			</action>
		</item>
	</menu>
	<menu id="system-menu" label="System">
		<item label="Nitrogen">
			<action name="Execute">
				<command>nitrogen</command>
				<startupnotify><enabled></enabled></startupnotify>
			</action>
		</item>
		<item label="Openbox Configuration Manager">
			<action name="Execute">
				<command>obconf</command>
				<startupnotify><enabled>yes</enabled></startupnotify>
			</action>
		</item>
		<item label="Screen Layout Editor">
			<action name="Execute">
				<command>arandr</command>
				<startupnotify><enabled></enabled></startupnotify>
			</action>
		</item>
		<item label="tint2conf">
			<action name="Execute">
				<command>tint2conf</command>
				<startupnotify><enabled></enabled></startupnotify>
			</action>
		</item>
		<item label="Volume">
			<action name="Execute">
				<command>pavucontrol</command>
				<startupnotify><enabled></enabled></startupnotify>
			</action>
		</item>
		<separator />
		<item label="Reconfigure Openbox">
			<action name="Reconfigure" />
		</item>
	</menu>
	<menu id="system-devices-menu" label="Devices" execute="/usr/bin/obdevicemenu"/>
	<menu id="root-menu" label="Openbox 3">
		<separator label="Applications"/>
		<item label="URxvt">
			<action name="Execute">
				<command>urxvtc</command>
			</action>
		</item>
		<item label="Vim">
			<action name="Execute">
				<!--<command>gvim</command>-->
				<command>urxvtc -e vim</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
		<item label="Sonata">
			<action name="Execute">
				<command>sonata</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
		<item label="SpaceFM">
			<action name="Execute">
				<command>spacefm</command>
				<startupnotify>
					<enabled>yes</enabled>
				</startupnotify>
			</action>
		</item>
		<separator />
		<menu id="apps-tools-menu"/>
		<menu id="apps-games-menu"/>
		<menu id="apps-editors-menu"/>
		<menu id="apps-graphics-menu"/>
		<menu id="apps-net-menu"/>
		<menu id="apps-vm-menu"/>
		<menu id="apps-office-menu"/>
		<menu id="apps-multimedia-menu"/>
		<!--<menu id="apps-term-menu"/>-->
		<!--<menu id="apps-fileman-menu"/>-->
		<separator label="System" />
		<menu id="system-menu"/>
		<!--<menu id="system-devices-menu"/>-->
		<separator />
		<item label="lock">
			<action name="Execute">
				<command>slock</command>
				<startupnotify>
					<enabled></enabled>
				</startupnotify>
			</action>
		</item>
		<item label="suspend">
			<action name="Execute">
				<command>sh ~/.config/openbox/scripts/suspend.sh</command>
				<startupnotify>
					<enabled></enabled>
				</startupnotify>
			</action>
		</item>
		<item label="hibernate">
			<action name="Execute">
				<command>sh ~/.config/openbox/scripts/hibernate.sh</command>
				<startupnotify>
					<enabled></enabled>
				</startupnotify>
			</action>
		</item>
		<item label="log out">
			<action name="SessionLogout">
				<prompt>yes</prompt>
			</action>
		</item>
	</menu>
</openbox_menu>

rc.xml

<?xml version="1.0" encoding="UTF-8"?>
<openbox_config xmlns="http://openbox.org/3.4/rc">
	<resistance>
		<strength>10</strength>
		<screen_edge_strength>20</screen_edge_strength>
	</resistance>
	<focus>
		<focusNew>yes</focusNew>
		<followMouse>no</followMouse>
		<focusLast>yes</focusLast>
		<underMouse>no</underMouse>
		<focusDelay>200</focusDelay>
		<raiseOnFocus>no</raiseOnFocus>
	</focus>
	<placement>
		<policy>UnderMouse</policy>
		<center>yes</center>
		<monitor>Any</monitor>
		<primaryMonitor>Mouse</primaryMonitor>
	</placement>
	<theme>
		<name>Onyx2</name>
		<titleLayout>CIMLSD</titleLayout>
		<!--
			avaible characters are NDSLIMC, each can occur at most once.
			N: window icon
			L: window label (AKA title).
			I: iconify
			M: maximize
			C: close
			S: shade (roll up/down)
			D: omnipresent (on all desktops).
		-->
		<keepBorder>yes</keepBorder>
		<animateIconify>yes</animateIconify>
		<font place="ActiveWindow">
			<name>Terminus</name>
			<size>8</size>
			<weight>Normal</weight>
			<slant>Normal</slant>
		</font>
		<font place="InactiveWindow">
			<name>Terminus</name>
			<size>8</size>
			<weight>Normal</weight>
			<slant>Normal</slant>
		</font>
		<font place="MenuHeader">
			<name>Terminus</name>
			<size>8</size>
			<weight>Normal</weight>
			<slant>Normal</slant>
		</font>
		<font place="MenuItem">
			<name>Terminus</name>
			<size>8</size>
			<weight>Normal</weight>
			<slant>Normal</slant>
		</font>
		<font place="ActiveOnScreenDisplay">
			<name>Terminus</name>
			<size>8</size>
			<weight>Bold</weight>
			<slant>Normal</slant>
		</font>
		<font place="InactiveOnScreenDisplay">
			<name>Terminus</name>
			<size>8</size>
			<weight>Bold</weight>
			<slant>Normal</slant>
		</font>
	</theme>
	<desktops>
		<number>5</number>
		<firstdesk>2</firstdesk>
		<names>
			<name>left</name>
			<name>middle</name>
			<name>right</name>
			<name>more</name>
			<name>...</name>
			<name>6</name>
			<name>7</name>
			<name>8</name>
			<name>9</name>
		</names>
		<popupTime>10</popupTime>
	</desktops>
	<resize>
		<drawContents>yes</drawContents>
		<popupShow>Always</popupShow>
		<popupPosition>Center</popupPosition>
		<popupFixedPosition>
			<x>center</x>
			<y>center</y>
		</popupFixedPosition>
	</resize>
	<margins>
		<top>6</top>
		<bottom>4</bottom>
		<left>2</left>
		<right>2</right>
	</margins>
	<dock>
		<position>Top</position>
		<!-- (Top|Bottom)(Left|Right|)|Top|Bottom|Left|Right|Floating -->
		<floatingX>2</floatingX>
		<floatingY>0</floatingY>
		<noStrut>yes</noStrut>
		<stacking>Above</stacking>
		<!-- 'Above', 'Normal', or 'Below' -->
		<direction>Horizontal</direction>
		<!-- 'Vertical' or 'Horizontal' -->
		<autoHide>no</autoHide>
		<hideDelay>300</hideDelay>
		<!-- in milliseconds (1000 = 1 second) -->
		<showDelay>300</showDelay>
		<!-- in milliseconds (1000 = 1 second) -->
		<moveButton>Middle</moveButton>
		<!-- 'Left', 'Middle', 'Right' -->
	</dock>
	<keyboard>
	<!-- <chainQuitKey>C-g</chainQuitKey>-->
	<!-- Window Management -->
	<!-- Keybindings for desktop switching -->
		<keybind key="C-A-Left">
			<action name="DesktopLeft">
				<dialog>no</dialog>
				<wrap>no</wrap>
			</action>
		</keybind>
		<keybind key="C-A-Right">
			<action name="DesktopRight">
				<dialog>no</dialog>
				<wrap>no</wrap>
			</action>
		</keybind>
		<keybind key="C-A-S-Left">
			<action name="SendToDesktopLeft">
				<dialog>no</dialog>
				<wrap>no</wrap>
			</action>
		</keybind>
		<keybind key="C-A-S-Right">
			<action name="SendToDesktopRight">
				<dialog>no</dialog>
				<wrap>no</wrap>
			</action>
		</keybind>
		<keybind key="C-A-comma">
			<action name="Desktop">
				<desktop>1</desktop>
			</action>
		</keybind>
		<keybind key="C-A-period">
			<action name="Desktop">
				<desktop>2</desktop>
			</action>
		</keybind>
		<keybind key="C-A-slash">
			<action name="Desktop">
				<desktop>3</desktop>
			</action>
		</keybind>
		<keybind key="C-A-S-comma">
			<action name="SendToDesktop">
				<desktop>1</desktop>
				<follow>no</follow>
			</action>
		</keybind>
		<keybind key="C-A-S-period">
			<action name="SendToDesktop">
				<desktop>2</desktop>
				<follow>no</follow>
			</action>
		</keybind>
		<keybind key="C-A-S-slash">
			<action name="SendToDesktop">
				<desktop>3</desktop>
				<follow>no</follow>
			</action>
		</keybind>
		<keybind key="C-A-d">
			<action name="ToggleShowDesktop"/>
		</keybind>
		<!-- Keybindings for windows -->
		<keybind key="A-F4">
			<action name="Close"/>
		</keybind>
		<keybind key="A-F5">
			<action name="UnmaximizeFull"/>
		</keybind>
		<keybind key="A-F6">
			<action name="ToggleShade"/>
		</keybind>
		<keybind key="A-F7">
			<action name="Move"/>
		</keybind>
		<keybind key="A-F8">
			<action name="Resize"/>
		</keybind>
		<keybind key="A-F9">
			<action name="Iconify"/>
		</keybind>
		<keybind key="A-F10">
			<action name="MaximizeFull"/>
		</keybind>
		<keybind key="A-F11">
			<action name="ToggleFullscreen"/>
		</keybind>
		<!--<keybind key="A-F12">-->
		<!--	<action name="ToggleDecorations"/>-->
		<!--</keybind>-->
		<keybind key="A-Escape">
			<action name="Lower"/>
			<action name="FocusToBottom"/>
			<action name="Unfocus"/>
		</keybind>
		<keybind key="A-space">
			<action name="ShowMenu">
				<menu>client-menu</menu>
			</action>
		</keybind>
		<!-- Keybindings for window switching -->
		<keybind key="A-Tab">
			<action name="NextWindow"/>
		</keybind>
		<keybind key="A-S-Tab">
			<action name="PreviousWindow"/>
		</keybind>
		<!-- application calling -->
		<keybind key="C-A-space">
			<action name="Execute">
				<startupnotify>
					<enabled>true</enabled>
					<name>Terminal</name>
				</startupnotify>
				<command>urxvtc</command>
			</action>
		</keybind>
		<keybind key="Print">
			<action name="Execute">
				<startupnotify>
					<enabled>true</enabled>
					<name>Print Screen</name>
				</startupnotify>
				<command>bash ~/.config/openbox/scripts/screenshot.sh</command></action>
		</keybind>
		<keybind key="A-Print">
			<action name="Execute">
				<startupnotify>
					<enabled>true</enabled>
					<name>Print Window</name>
				</startupnotify>
				<command>bash ~/.config/openbox/scripts/screenshot_sel.sh</command>
			</action>
		</keybind>
		<keybind key="C-A-l">
			<action name="Execute">
				<startupnotify>
					<enabled>true</enabled>
					<name>Lock Screen</name>
				</startupnotify>
				<command>slock</command>
			</action>
		</keybind>
		<!-- hotkeys -->
		<!-- Fn keys -->
	</keyboard>
	<mouse>
		<dragThreshold>8</dragThreshold>
		<!-- number of pixels the mouse must move before a drag begins -->
		<doubleClickTime>300</doubleClickTime>
		<!-- in milliseconds (1000 = 1 second) -->
		<screenEdgeWarpTime>300</screenEdgeWarpTime>
		<!-- Time before changing desktops when the pointer touches the edge of the
		screen while moving a window, in milliseconds (1000 = 1 second).
		Set this to 0 to disable warping -->
		<context name="Frame">
			<mousebind button="A-Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
			</mousebind>
			<mousebind button="A-Left" action="Click">
				<action name="Unshade"/>
			</mousebind>
			<mousebind button="A-Left" action="Drag">
				<action name="Move"/>
			</mousebind>
			<mousebind button="A-Right" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
				<action name="Unshade"/>
			</mousebind>
			<mousebind button="A-Right" action="Drag">
				<action name="Resize"/>
			</mousebind>
			<mousebind button="A-Middle" action="Press">
				<action name="Lower"/>
				<action name="FocusToBottom"/>
				<action name="Unfocus"/>
			</mousebind>
			<mousebind button="A-Up" action="Click">
				<action name="DesktopPrevious"/>
			</mousebind>
			<mousebind button="A-Down" action="Click">
				<action name="DesktopNext"/>
			</mousebind>
			<mousebind button="C-A-Up" action="Click">
				<action name="DesktopPrevious"/>
			</mousebind>
			<mousebind button="C-A-Down" action="Click">
				<action name="DesktopNext"/>
			</mousebind>
			<mousebind button="A-S-Up" action="Click">
				<action name="SendToDesktopPrevious"/>
			</mousebind>
			<mousebind button="A-S-Down" action="Click">
				<action name="SendToDesktopNext"/>
			</mousebind>
		</context>
		<context name="Titlebar">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
			</mousebind>
			<mousebind button="Left" action="Drag">
				<action name="Move"/>
			</mousebind>
			<mousebind button="Left" action="DoubleClick">
				<action name="ToggleShade"/>
			</mousebind>
			<mousebind button="Middle" action="Press">
				<action name="Lower"/>
				<action name="FocusToBottom"/>
				<action name="Unfocus"/>
			</mousebind>
			<mousebind button="Up" action="Click">
				<action name="Shade"/>
				<action name="FocusToBottom"/>
				<action name="Unfocus"/>
				<action name="Lower"/>
			</mousebind>
			<mousebind button="Down" action="Click">
				<action name="Unshade"/>
				<action name="Raise"/>
			</mousebind>
			<mousebind button="Right" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
				<action name="ShowMenu">
					<menu>client-menu</menu>
				</action>
			</mousebind>
		</context>
		<context name="Top">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
				<action name="Unshade"/>
			</mousebind>
			<mousebind button="Left" action="Drag">
				<action name="Resize">
					<edge>top</edge>
				</action>
			</mousebind>
		</context>
		<context name="Left">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
			</mousebind>
			<mousebind button="Left" action="Drag">
				<action name="Resize">
					<edge>left</edge>
				</action>
			</mousebind>
		</context>
		<context name="Right">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
			</mousebind>
			<mousebind button="Left" action="Drag">
				<action name="Resize">
					<edge>right</edge>
				</action>
			</mousebind>
		</context>
		<context name="Bottom">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
			</mousebind>
			<mousebind button="Left" action="Drag">
				<action name="Resize">
					<edge>bottom</edge>
				</action>
			</mousebind>
			<mousebind button="Middle" action="Press">
				<action name="Lower"/>
				<action name="FocusToBottom"/>
				<action name="Unfocus"/>
			</mousebind>
			<mousebind button="Right" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
				<action name="ShowMenu">
					<menu>client-menu</menu>
				</action>
			</mousebind>
		</context>
		<context name="BLCorner">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
			</mousebind>
			<mousebind button="Left" action="Drag">
				<action name="Resize"/>
			</mousebind>
		</context>
		<context name="BRCorner">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
			</mousebind>
			<mousebind button="Left" action="Drag">
				<action name="Resize"/>
			</mousebind>
		</context>
		<context name="TLCorner">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
				<action name="Unshade"/>
			</mousebind>
			<mousebind button="Left" action="Drag">
				<action name="Resize"/>
			</mousebind>
		</context>
		<context name="TRCorner">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
				<action name="Unshade"/>
			</mousebind>
			<mousebind button="Left" action="Drag">
				<action name="Resize"/>
			</mousebind>
		</context>
		<context name="Client">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
			</mousebind>
			<mousebind button="Middle" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
			</mousebind>
			<mousebind button="Right" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
			</mousebind>
		</context>
		<context name="Icon">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
				<action name="Unshade"/>
				<action name="ShowMenu">
					<menu>client-menu</menu>
				</action>
			</mousebind>
			<mousebind button="Right" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
				<action name="ShowMenu">
					<menu>client-menu</menu>
				</action>
			</mousebind>
		</context>
		<context name="AllDesktops">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
				<action name="Unshade"/>
			</mousebind>
			<mousebind button="Left" action="Click">
				<action name="ToggleOmnipresent"/>
			</mousebind>
		</context>
		<context name="Shade">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
			</mousebind>
			<mousebind button="Left" action="Click">
				<action name="ToggleShade"/>
			</mousebind>
		</context>
		<context name="Iconify">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
			</mousebind>
			<mousebind button="Left" action="Click">
				<action name="Iconify"/>
			</mousebind>
		</context>
		<context name="Maximize">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
				<action name="Unshade"/>
			</mousebind>
			<mousebind button="Middle" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
				<action name="Unshade"/>
			</mousebind>
			<mousebind button="Right" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
				<action name="Unshade"/>
			</mousebind>
			<mousebind button="Left" action="Click">
				<action name="ToggleMaximizeFull"/>
			</mousebind>
			<mousebind button="Middle" action="Click">
				<action name="ToggleMaximizeVert"/>
			</mousebind>
			<mousebind button="Right" action="Click">
				<action name="ToggleMaximizeHorz"/>
			</mousebind>
		</context>
		<context name="Close">
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
				<action name="Unshade"/>
			</mousebind>
			<mousebind button="Left" action="Click">
				<action name="Close"/>
			</mousebind>
		</context>
		<context name="Desktop">
			<mousebind button="Up" action="Click">
				<action name="DesktopPrevious"/>
			</mousebind>
			<mousebind button="Down" action="Click">
				<action name="DesktopNext"/>
			</mousebind>
			<mousebind button="A-Up" action="Click">
				<action name="DesktopPrevious"/>
			</mousebind>
			<mousebind button="A-Down" action="Click">
				<action name="DesktopNext"/>
			</mousebind>
			<mousebind button="C-A-Up" action="Click">
				<action name="DesktopPrevious"/>
			</mousebind>
			<mousebind button="C-A-Down" action="Click">
				<action name="DesktopNext"/>
			</mousebind>
			<mousebind button="Left" action="Press">
				<action name="Focus"/>
				<action name="Raise"/>
			</mousebind>
		</context>
		<context name="Root">
			<!-- Menus -->
			<mousebind button="Middle" action="Press">
				<action name="ShowMenu">
					<menu>client-list-combined-menu</menu>
				</action>
			</mousebind>
			<!--<mousebind button="Middle" action="Press">-->
			<!--	<action name="ShowMenu">-->
			<!-- <menu>root-menu</menu>-->
			<!--	</action>-->
			<!--</mousebind>-->
			<mousebind button="Right" action="Press">
				<action name="ShowMenu">
					<menu>root-menu</menu>
				</action>
			</mousebind>
		</context>
		<context name="MoveResize">
			<mousebind button="Up" action="Click">
				<action name="DesktopPrevious"/>
			</mousebind>
			<mousebind button="Down" action="Click">
				<action name="DesktopNext"/>
			</mousebind>
			<mousebind button="A-Up" action="Click">
				<action name="DesktopPrevious"/>
			</mousebind>
			<mousebind button="A-Down" action="Click">
				<action name="DesktopNext"/>
			</mousebind>
		</context>
	</mouse>
	<menu>
		<file>menu.xml</file>
		<hideDelay>200</hideDelay>
		<middle>yes</middle>
		<submenuShowDelay>100</submenuShowDelay>
		<applicationIcons>no</applicationIcons>
	</menu>
	<applications>
		<application name="Blender">
			<decor>no</decor>
		</application>
		<application name="urxvt">
			<decor>yes</decor>
		</application>
		<application name="opera">
			<decor>yes</decor>
		</application>
		<application name="sonata">
			<layer>above</layer>
			<desktop>all</desktop>
		</application>
		<application name="Buddy List">
			<layer>above</layer>
			<!--<desktop>all</desktop>-->
		</application>
		<application name="pavucontrol">
			<desktop>all</desktop>
		</application>
		<application name="Conky">
		</application>
	</applications>
</openbox_config>

Additionally, I'm using the conky theme from mira which is being modified and being generally a partially working mess. Note in the screenshot one window seams to be black. Wonder why.

Anyway, after cleaning this up, things are going to change. Openbox itself along with some more things happening around.

Offline

#2194 2012-07-31 22:05:02

FlyingHappy
Member
From: Cincinnati, OH
Registered: 2011-04-18
Posts: 192

Re: Share your Openbox Desktop ! :)

ghost333 wrote:
FlyingHappy wrote:

Just got this running and usable.  I love Arch, especially on my shiny new rig!

http://ompldr.org/tZDNoaA]

http://ompldr.org/tZDNoaQ]

Can i have your conky file plz?


Man,  I'm really sorry, I somehow missed your post and just saw it.  I actually just re-installed due to a hard disk issue and don't have the config for it.  I'm working on rebuilding the system, I can tell you that I'm pretty sure I found that conky config in this thread somewhere though and just made very minor changes.

Offline

#2195 2012-07-31 23:14:39

hsngrms
Member
From: Turkey
Registered: 2012-03-06
Posts: 41
Website

Re: Share your Openbox Desktop ! :)

Hypnotic Eyes of TERMINATOR !!!

Clean
2012-08-01-015952_1366x768_scrot.png
Dirty
2012-08-01-020232_1366x768_scrot.png
Menu
tZXh0cg

Last edited by hsngrms (2012-07-31 23:17:40)

Offline

#2196 2012-08-01 05:17:13

cobalt45xy
Member
From: WA - USA
Registered: 2012-04-02
Posts: 9

Re: Share your Openbox Desktop ! :)

After using Xfce for a while and brief stint with Gnome-Shell (ICK), I finally made the switch to OpenBox. Here's my setup for now. I'm trying to decide whether delving into conky just to get weather information is worth it or not. I couldn't get the weather pipe menu to work so I gave up.

clean
2RGa0s.jpg

fake-dirty
IMd1Ks.png

Programs:
tint2 - custom config
compton
AWN - Fackdock - http://aeron-gt.deviantart.com/art/Fack … -280755331
Faenza-Darkest-Cupertino Icons (combined)
GTK theme - Elementary Dark - http://satya164.deviantart.com/art/elem … -244257862
Openbox theme- egtk/shiki brave dark - custom modified
Pcmanfm
VirtualBox
Wallpaper - Custom

Offline

#2197 2012-08-02 10:54:16

gjm
Member
From: Warsaw
Registered: 2012-02-14
Posts: 40

Re: Share your Openbox Desktop ! :)

ruB9j.png or here

GTK & Openbox Theme: Orion
tint2 Config: here

Offline

#2198 2012-08-12 12:47:14

hsngrms
Member
From: Turkey
Registered: 2012-03-06
Posts: 41
Website

Re: Share your Openbox Desktop ! :)

2012-08-12-143746_1366x768_scrot.png

2012-08-12-143736_1366x768_scrot.png

GTK theme: elementary Dark
Openbox theme: Hand made (edited Airborne) : )
Icon theme: Mac4Lin
Cursor theme: Pulse-Glass

Offline

#2199 2012-08-12 13:38:00

rdfreitas
Member
From: São Paulo - Brazil
Registered: 2010-01-08
Posts: 14

Re: Share your Openbox Desktop ! :)

tZjJtaw


Arch64 + Openbox
Email: rdfreitas@archlinux.com.br

Offline

#2200 2012-08-12 17:12:35

MorningWood
Member
Registered: 2008-06-06
Posts: 78

Re: Share your Openbox Desktop ! :)

>>moderator edit: Removed large image. Read Forum Etiquette: Pasting Pictures and Code and screenshot posting rules. Thanks. --fsckd<<


Conky:

#avoid flicker
double_buffer yes

#own window to run simultanious 2 or more conkys
own_window  yes
own_window_transparent yes
own_window_argb_visual no
own_window_argb_value 153
own_window_type override
own_window_hints undecorate,sticky,skip_taskbar,skip_pager
background no

#borders
draw_borders no
border_inner_margin 2

#shades
draw_shades no

#position
gap_x 2
gap_y 4
alignment top_middle

#behaviour
update_interval 1

#colour
default_color  white

#default_shade_color 000000
own_window_colour 262626

#font
use_xft yes
xftfont Liberation Sans:pixelsize=11

#to prevent window from moving
#use_spacer right
minimum_size 1270 0
maximum_width 1080

#mpd
mpd_host localhost
mpd_port 6600

TEXT
${alignc}Kernel: ${color white}$kernel  |  ${color} Up: ${color white}${uptime_short}  |  ${color}Cpu: ${color white}${cpu}%   |   ${color }Mem: ${color white}$mem/$memmax - $memperc%    |   ${color }Net: ${color white}${font}${downspeed eth0} Kb/s  ${color white} ${totaldown eth0} down  |   ${color white}${upspeed eth0} Kb/s ${color white}${totalup eth0} up  |  ${alignc} ${color }Root: ${color white}${font}${fs_free /}  / ${fs_size /} - ${fs_free_perc /}%

Conky Calendar:

######################
# - Conky settings - #
######################
update_interval 1
total_run_times 0
net_avg_samples 1
cpu_avg_samples 1

imlib_cache_size 0
double_buffer yes
no_buffers yes

#####################
# - Text settings - #
#####################
use_xft yes
xftfont AvantGarde LT Medium:size=40
override_utf8_locale yes
text_buffer_size 2048

#############################
# - Window specifications - #
#############################
own_window_class Conky
own_window yes
own_window_type override
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
#own_window_argb_visual yes
#own_window_argb_value 100

alignment tr
gap_x 00
gap_y 40
minimum_size 350 300


default_bar_size 60 8

#########################
# - Graphics settings - #
#########################
draw_shades no

default_color 080808
default_shade_color 1d1d1d
color0 ffffff
color1 ffffff
color2 ffffff


#lua_load ~/.conky/conkybg.lua
#lua_draw_hook_pre conky_draw_bg

TEXT
${voffset 11} ${goto 30}${time %I} ${goto 110}${time %M}
${image ~/.conky/b.png -p 0,0 -s 188x100}
${voffset -165} ${goto 223}${font AvantGarde LT Medium:size=10}${time %A} ${font}
${font AvantGarde LT Medium:size=38}${voffset -54}${goto 220}${time %d}
${image ~/.conky/c.png -p 200,0 -s 93x100}

TINT2:

# Tint2 config file
# Generated by tintwizard (http://code.google.com/p/tintwizard/)
# For information on manually configuring tint2 see http://code.google.com/p/tint2/wiki/Configure

# Background definitions
# ID 1
rounded = 5
border_width = 0
background_color = #000000 24
border_color = #FFFFFF 0

# ID 2
rounded = 5
border_width = 0
background_color = #003A63 40
border_color = #000000 100

# ID 3
rounded = 5
border_width = 0
background_color = #000000 42
border_color = #FFFFFF 1

# ID 4
rounded = 5
border_width = 0
background_color = #000000 62
border_color = #FFFFFF 8

# Panel
panel_monitor = all
panel_position = bottom center horizontal
panel_size = 100% 28
panel_margin = 0 0
panel_padding = 0 0 2
panel_dock = 0
wm_menu = 0
panel_layer = top
panel_background_id = 1

# Panel Autohide
autohide = 1
autohide_show_timeout = 0.0
autohide_hide_timeout = 0.0
autohide_height = 0
strut_policy = follow_size

# Taskbar
taskbar_mode = multi_desktop
taskbar_padding = 0 0 2
taskbar_background_id = 1
taskbar_active_background_id = 2

# Tasks
urgent_nb_of_blink = 7
task_icon = 1
task_text = 1
task_centered = 1
task_maximum_size = 200 32
task_padding = 2 2
task_background_id = 3
task_active_background_id = 4
task_urgent_background_id = 0
task_iconified_background_id = 1

# Task Icons
task_icon_asb = 100 0 0
task_active_icon_asb = 100 0 0
task_urgent_icon_asb = 100 0 0
task_iconified_icon_asb = 50 0 0

# Fonts
task_font = snap 10
task_font_color = #EEEEFF 46
task_active_font_color = #FFFFFF 100
task_urgent_font_color = #FFFFFF 100
task_iconified_font_color = #EEEEFF 46
font_shadow = 0

# System Tray
systray = 1
systray_padding = 2 1 2
systray_sort = ascending
systray_background_id = 1
systray_icon_size = 0
systray_icon_asb = 100 0 0

# Clock
time1_format = %I:%M:%S
time1_font = snap 9
time2_format = %a %d %b
time2_font = snap 7
clock_font_color = #FFFFFF 100
clock_padding = 2 2
clock_background_id = 1

# Tooltips
tooltip = 1
tooltip_padding = 10 10
tooltip_show_timeout = 1
tooltip_hide_timeout = 1
tooltip_background_id = 4
tooltip_font = snap 12
tooltip_font_color = #FFFFFF 100

# Mouse
mouse_middle = shade
mouse_right = close
mouse_scroll_up = none
mouse_scroll_down = none

# Battery
battery = 0
battery_low_status = 0
battery_low_cmd = (null)
battery_hide = 90
bat1_font = (null)
bat2_font = (null)
battery_font_color = #000000 0
battery_padding = 2 2
battery_background_id = 0

# End of config

I love this setup!

Last edited by fsckd (2012-08-14 14:53:04)

Offline

Board footer

Powered by FluxBB