You are not logged in.
the easier way is to download and install binary package (0.11~svn603-1)
from https://launchpad.net/~killeroid/+archive/ppa
and to tweak your config file (see wiki http://code.google.com/p/tint2/wiki/Configure)
the GUI config tool doesn't support new option, so you need to edit config file with an editor.
In the screenshot, the launcher use AwOken icons.
Last edited by thil77 (2010-11-26 13:07:21)
Offline
@thil77, nice work with the latest tint2 features! I will look into updating CrunchBang's package. 
Ex-developer of #! CrunchBang. Follow me on Twitter 
Offline
thanks Corenominal,
current svn version looks good (stable and ready for a release).
but we don't have time to change the GUI tool.
So when a user edit the config with tintwizard, new options are lost...
Offline
current svn version looks good (stable and ready for a release).
but we don't have time to change the GUI tool.
So when a user edit the config with tintwizard, new options are lost...
Ah, okay, that is good to know, thank you. 
Ex-developer of #! CrunchBang. Follow me on Twitter 
Offline
Mine :
# Tint2 config file
# Generated by tintwizard ([url]http://code.google.com/p/tintwizard/[/url])
# For information on manually configuring tint2 see [url]http://code.google.com/p/tint2/wiki/Configure[/url]
# To use this as default tint2 config: save as $HOME/.config/tint2/tint2rc
# Background definitions
# ID 1
rounded = 7
border_width = 2
background_color = #000000 60
border_color = #FFFFFF 15
# ID 2
rounded = 5
border_width = 0
background_color = #FFFFFF 40
border_color = #FFFFFF 47
# ID 3
rounded = 5
border_width = 0
background_color = #FFFFFF 15
border_color = #FFFFFF 67
# Panel
panel_monitor = all
panel_position = top center horizontal
panel_size = 100% 30
panel_margin = 0 0
panel_padding = 7 0 0
panel_dock = 0
wm_menu = 1
panel_layer = normal
panel_background_id = 0
# Panel Autohide
autohide = 0
autohide_show_timeout = 0.3
autohide_hide_timeout = 2
autohide_height = 4
strut_policy = minimum
# Taskbar
taskbar_mode = single_desktop
taskbar_padding = 2 3 2
taskbar_background_id = 0
#taskbar_active_background_id = 0
# Tasks
urgent_nb_of_blink = 8
task_icon = 1
task_text = 1
task_centered = 1
task_maximum_size = 140 35
task_padding = 6 3
task_background_id = 3
task_active_background_id = 2
task_urgent_background_id = 0
task_iconified_background_id = 0
# 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 = 100 0 0
# Fonts
task_font = sans 7
task_font_color = #FFFFFF 67
task_active_font_color = #FFFFFF 82
task_urgent_font_color = #FFFFFF 100
task_iconified_font_color = #FFFFFF 100
font_shadow = 0
# System Tray
systray = 1
systray_padding = 0 4 5
systray_sort = left2right
systray_background_id = 0
systray_icon_size = 0
systray_icon_asb = 100 0 0
# Clock
time1_format = %H:%M
time1_font = Sans Bold 8
clock_font_color = #FFFFFF 73
clock_padding = 1 0
clock_background_id = 0
clock_lclick_command = lxtask
clock_rclick_command = gsimplecal
# Tooltips
tooltip = 0
tooltip_padding = 2 2
tooltip_show_timeout = 0.7
tooltip_hide_timeout = 0.3
tooltip_background_id = 1
tooltip_font = sans 10
tooltip_font_color = #FFFFFF 80
# Mouse
mouse_middle = none
mouse_right = none
mouse_scroll_up = toggle
mouse_scroll_down = iconify
# Battery
battery = 0
battery_low_status = 10
battery_low_cmd = notify-send "battery low"
battery_hide = 98
bat1_font = sans 8
bat2_font = sans 6
battery_font_color = #FFFFFF 73
battery_padding = 1 0
battery_background_id = 0
# End of configOffline
Uploaded with ImageShack.us
I'm using the same tint2 from 9.04. Once I learn the ins and outs. I will create my own!
Last edited by leemaster81 (2011-02-02 10:32:51)
#! Statler, Pentium 4, 512(ram)
Debian 6.0, Gnome + Compiz, Phenom iix4 955, 2x2gb
Offline
Here's some random code that I've been working on over the weekend. My goal was to accomplish something similar to Maximus, using only openbox and tint2. While this is all about a really cool tint2 dock, the code in tint2 itself is fairly simple, so I'm including a lot of stuff about how I went about integrating tint2 more closely with openbox (rather than showing you my boring tint2 files)
The end result is described in more detail here...
http://crunchbanglinux.org/forums/post/106238/#p106238
and here's a screen of all three docks (on top left the task list, clock systray and power button, set to autohide), on top right window buttons that are always on top, on right side, my launcher, also set to autohide by default.
First openbox settings to make windows start maximized, - in rc.xml add something like this (near the top of the list of applications)
<application class="*">
<decor>no</decor>
<maximized>yes</maximized>
</application>Next I wanted window buttons on the panel. but wanted them in a separate place than the propper launcher. This meant I needed two separate launchers -and I believe two separate tint2 panels.
You can launch several instances of tint2 using this code in autostart,sh -just have several config files, and launch each one separately.
tint2 -c /home/USER/.config/tint2/tint2rcbuttonsnow I wanted to set up the buttons, so I set up some custom .desktop files with code that would call shortcuts from openbox using xdotool (you need to install this - I believe it's in the repos), and my own custom icons that I made in gimp.
the following code is equivalent to the holding alt + shift + m at once.
xdotool key alt+shift+mNow in openbox I had to set the shortcuts in rc.xml to do what I wanted, here's one example (notice the syntax for key presses is different than xdotool):
<keybind key="A-S-m">
<action name="DirectionalTargetSouth"/>
<action name="MaximizeFull"/>
<action name="Undecorate"/>
</keybind>The above code causes openbox to target the window below the present one (since I call it by clicking on the panel) then maximizes the window, then undecorates it (removes the border). This allows me to manually maximize a window ala maximus ...I have another button that unmaximizes (and decorates) and one that iconifies, as well as a button that functions like alt-tab to switch windows.
Lastly, I made a really neat button that calls an sh script that will start or kill my other tint2 panels depending on which ones are open (essentially cycling through 4 types of panel configurations. Here's my script (I know it's inelegant and crappy...but I'm not a programmer by trade or training...it does work though).
#my goal with this script is to create 4 separate panel states, (note a button on a third panel triggers this script...each time it is pressed, it should have a different effect, resulting in one of these 4 states).
# 1 autodocking - panel 1, with autodocking side panel
# 2 panel 2 (permanent-same as panel1) with side panel
# 3 panel 2 with no side panel
# 4 no panels (aside from the window button panel)
#first I set each panel variable to 0
PANEL1=0
PANEL2=0
SIDEPANEL=0
#check if panel1 (taskbar, clock, systray, and power button)is running? if so, set $PANEL1 to 1
pgrep -f "tint2 -c /home/USR/.config/tint2/tint2rctask"
if [ $? == 0 ]; then
PANEL1=1
fi
#check for panel 2 - this is the same as panel 1, but autohide is disabled...I think you can get a similar effect using openbox's dock...but I chose to do it this way...
pgrep -f "tint2 -c /home/USR/.config/tint2/tint2rcstuck"
if [ $? == 0 ]; then
PANEL2=1
fi
#check for panel 3 - my application launcher
pgrep -f "tint2 -c /home/USR/.config/tint2/tint2rctwo"
if [ $? == 0 ]; then
SIDEPANEL=1
fi
#if panel 1 is there, it kills panel1, opens panel2 and quits - switches from autohide to stable panel
if [ $PANEL1 == 1 ]; then
pkill -f "tint2 -c /home/USR/.config/tint2/tint2rctask"
tint2 -c /home/USR/.config/tint2/tint2rcstuck &
exit
fi
#if panel 3 (my application launcher) is there (and either a stable panel or no top panel...since we've already quit out if panel 1 is there) - kill the side panel
if [ $SIDEPANEL == 1 ]; then
pkill -f "tint2 -c /home/.config/tint2/tint2rctwo";
exit
fi
#if panel 3's not there, then kill panel 2 (leaving me with just my button panel) - notice there's no exit here, since I want it to keep going.
if [ $SIDEPANEL == 0 ]; then
pkill -f "tint2 -c /home/USR/.config/tint2/tint2rcstuck"
fi
#if there was already no panel 2 at the beginning of the script, start panel 1 and panel 3 again
if [ $PANEL2 == 0 ]; then
tint2 -c /home/USR/.config/tint2/tint2rctask &
tint2 -c /home/USR/.config/tint2/tint2rctwo &
exit
fiOne last note, this caused me a big headache - be careful how you name your panels if you're going to make scripts to kill them...or be prepared to add extra modifiers to pkill and pgrep...both of these will by default look for the anything that matches your text, so 'pgrep -f tint2' is the same as 'pgrep -f tint2*'
if you name your panels tint2rc, tint2rc2 and tint2rc3, you'll normally be targetting all three whenever you want to target tint2rc...I learned that the hard way after hours of pulling my hair and rewriting a perfectly fine script.
Last edited by bobrossw (2011-02-08 06:19:53)
Offline
One question I'll throw out there...does anyone know if there's a way to query the window state (maximized, decorated, iconified, position, etc...) in openbox? I'm thinking I can consolidate my three min/max buttons to just one that cycles through the three states, but I'd need to have a shell script know what state the window is in already...
Offline
Ok, just figured out how to make a menu using only tint2 and xdotool...
now here's some code:
#!/bin/bash
#this script was written by bobrossw in order to create a tint2 launcher panel that can be opened from a single button
#the button calls the script, which then launches the panel,
#loops and monitors the mouse
#and kills the panel
#some of this code was adapted from the following- for more info on xdotool and mouse capture, see his great tutorials:
##Author: Kris Occhipinti (A.K.A. Metalx1000)
##Description: Gets your mouse location and echos "top left" when the cursor is moved to the top left of the screen.
##April. 2010
##http://www.BASHscripts.info
##GPL v3
#--------------------------
#start the side panel
tint2 -c /home/emile/.config/tint2/tint2rctwo &
#start mouse watching loop
while true;
do
#get x coordinate of mouse and save it as a variable, x
x=`xdotool getmouselocation|sed 's/x:\(.*\) y:\(.*\) screen:.*/\1/'`
#get y coordinate of mouse and save it as y
y=`xdotool getmouselocation|sed 's/x:\(.*\) y:\(.*\) screen:.*/\2/'`
#if either x or y is outside of the range that I want (within the tint2 border,
#this is easy if you design your tint2 panels using pixels,
#just remember you've got as many pixels as your monitor resolution and the top left is 0,0 ...for me my tint2 panel is 132 pixels wide on a 1024 x 600 screen, so just subtract and that's my boundary
if (("$x" < "892")) || (( "$y" > 330 )); then
pkill -f "tint2 -c /home/emile/.config/tint2/tint2rctwo"
break
fi
doneI put a lot of comments in there, but the script itself is fairly simple, it launches a tint2 panel, monitors the mouse location and kills the panel if the mouse leaves a certain area...what this means is you can have a button in one tint2 panel call the script, then make another panel that is just a launcher, which opens up right next to your button. Then when your mouse leaves that area, the tint2 panel will close (not autohide --close entirely) So it basically functions just like a start menu.
I'm not loving the performance on my computer (it takes a second to load the icons when the panel starts), so I may not use it much...but the concept is sound.
I've also thought of some variations that would be possible, like using xdotool to warp the mouse pointer to the middle of the screen and opening up the launcher panel there...lots of options between openbox, xdotool and tint2.
There's other posts and guides on here about how to do something similar to open a custom openbox window or using a special systray python script called "adeskpanel" which looks pretty cool...so those may be easier, more elegant and faster but if you're up for some tinkering, or are really die-hard about tint2, this may be a fun project.
Offline
Screenshot :
Code :
# Tint2 config file
# Background definitions
# ID 1
rounded = 2
border_width = 1
background_color = #222222 100
border_color = #000000 44
# ID 2
rounded = 1
border_width = 1
background_color = #888888 60
border_color = #FFFFFF 40
# ID 3
rounded = 1
border_width = 1
background_color = #888888 20
border_color = #FFFFFF 20
# ID 4
rounded = 1
border_width = 1
background_color = #888888 20
border_color = #FFFFFF 60
# ID 5
rounded = 2
border_width = 1
background_color = #222222 40
border_color = #FFFFFF 20
# ID 6
rounded = 2
border_width = 1
background_color = #222222 100
border_color = #FFFFFF 70
# ID 7
rounded = 3
border_width = 1
background_color = #222222 50
border_color = #FFFFFF 40
# ID 8
rounded = 1
border_width = 1
background_color = #888888 20
border_color = #888888 20
# ID 9
rounded = 2
border_width = 0
background_color = #222222 40
border_color = #FFFFFF 20
# Launchers
launcher_icon_theme = awOken
launcher_padding = 4 4 5
launcher_background_id = 1
launcher_icon_size = 22
launcher_item_app = /home/kooka/.config/obmenu.desktop
launcher_item_app = /home/kooka/.config/obclient.desktop
# Panel
panel_items = LCTBS
panel_monitor = all
panel_position = top center horizontal
panel_size = 100% 36
panel_margin = 0 0
panel_padding = 6 2 4
panel_dock = 0
wm_menu = 1
panel_layer = top
panel_background_id = 1
# Panel Autohide
autohide = 0
autohide_show_timeout = 0.3
autohide_hide_timeout = 1.5
autohide_height = 6
strut_policy = follow_size
# Taskbar
taskbar_mode = multi_desktop
taskbar_padding = 2 2 4
taskbar_background_id = 5
taskbar_active_background_id = 6
taskbar_name = 1
taskbar_name_padding = 2 2
taskbar_name_background_id = 9
taskbar_name_active_background_id = 9
taskbar_name_font = Radio Space 10
taskbar_name_font_color = 0
taskbar_name_active_font_color = 100
# Tasks
urgent_nb_of_blink = 20
task_icon = 1
task_text = 0
task_centered = 1
task_maximum_size = 40 40
task_padding = 6 3
task_background_id = 3
task_active_background_id = 2
task_urgent_background_id = 4
task_iconified_background_id = 0
# Task Icons
task_icon_asb = 100 -100 0
task_active_icon_asb = 100 -100 0
task_urgent_icon_asb = 100 -100 0
task_iconified_icon_asb = 100 -100 0
# Fonts
task_font = Radio Space 10
task_font_color = #222222 100
task_active_font_color = #8F8F8F 100
task_urgent_font_color = #8F8F8F 100
task_iconified_font_color = #8F8F8F 100
font_shadow = 0
# System Tray
systray = 1
systray_padding = 4 4 5
systray_sort = descending
systray_background_id = 0
systray_icon_size = 0
systray_icon_asb = 100 -100 0
# Clock
time1_format = %H:%M
time1_font = Radio Space Bold 11
clock_font_color = #8F8F8F 80
clock_tooltip = %A %d %B
clock_padding = 4 2
clock_background_id = 0
clock_lclick_command = gcalctool
clock_rclick_command = orage
# Tooltips
tooltip = 1
tooltip_padding = 2 2
tooltip_show_timeout = 0.0
tooltip_hide_timeout = 0.0
tooltip_background_id = 1
tooltip_font = Radio Space 10
tooltip_font_color = #8F8F8F 80
# Mouse
mouse_middle = none
mouse_right = close
mouse_scroll_up = toggle
mouse_scroll_down = iconify
# Battery
battery = 1
battery_low_status = 20
battery_low_cmd = notify-send "battery low"
battery_hide = 25
bat1_font = Radio Space 10
bat2_font = Radio Space 8
battery_font_color = #FFFFFF 100
battery_padding = 2 0
battery_background_id = 0
# End of configMy Fluidr (= Fickr) : http://www.fluidr.com/photos/kookadimi/sets
Offline
#---------------------------------------------
# TINT2 CONFIG FILE
#---------------------------------------------
# For more information about tint2, see:
# http://code.google.com/p/tint2/wiki/Welcome
#
# For more config file examples, see:
# http://crunchbanglinux.org/forums/topic/3232/my-tint2-config/
# Background definitions
# ID 1
rounded = 0
border_width = 0
background_color = #282828 0
border_color = #333333 0
# ID 2 - task active
rounded = 1
border_width = 0
background_color = #F4F4F4 35
# ID 3 - task
rounded = 1
border_width = 0
background_color = #282828 0
border_color = #282828 0
# ID 4
rounded = 1
border_width = 1
background_color = #888888 0
border_color = #ED2323 60
# ID 5 - taskbar
rounded = 2
border_width = 0
background_color = #282828 0
border_color = #282828 0
# ID 6 - active taskbar
rounded = 2
border_width = 0
background_color = #222222 0
border_color = #222222 80
# ID 7 - tooltip
rounded = 3
border_width = 0
background_color = #222222 0
border_color = #222222 90
# ID 8
rounded = 1
border_width = 1
background_color = #888888 0
border_color = #888888 20
# Panel
panel_monitor = all
panel_position = top center horizontal
panel_items = TSC
panel_size = 100% 16
panel_margin = 0 0
panel_padding = 0 0
panel_dock = 0
wm_menu = 1
panel_layer = top
panel_background_id = 1
# Panel Autohide
autohide = 0
autohide_show_timeout = 0.3
autohide_hide_timeout = 1.5
autohide_height = 6
strut_policy = follow_size
# Taskbar
taskbar_mode = single_desktop
taskbar_padding = 0 0 0
taskbar_background_id = 5
taskbar_active_background_id = 6
taskbar_name = 0
taskbar_name_background_id = 0
taskbar_name_active_background_id = 0
taskbar_name_font = Corbel 1
taskbar_name_font_color = #ffffff 100
taskbar_name_active_font_color = #d8d8d8 100
# Tasks
urgent_nb_of_blink = 20
task_icon = 1
task_text = 1
task_centered = 0
task_padding = 2 2
task_background_id = 3
task_active_background_id = 2
task_urgent_background_id = 4
task_iconified_background_id = 3
# Task Icons
task_icon_asb = 90 0 0
task_active_icon_asb = 100 0 0
task_urgent_icon_asb = 100 0 0
task_iconified_icon_asb = 90 0 0
# Fonts
task_font = Corbel 10
task_font_color = #f4f4f4 75
task_active_font_color = #000000 100
task_urgent_font_color = #FFFFFF 100
task_iconified_font_color = #f4f4f4 75
font_shadow = 0
# Launcher
launcher_padding = 8 4 4
launcher_background_id = 0
launcher_icon_size = 14
# Specify icon theme names with launcher_icon_theme.
# if you have an XSETTINGS manager running (like xfsettingsd), tint2 will follow your current theme.
launcher_icon_theme = gnome-colors-statler
# Each launcher_item_app must be a full path to a .desktop file
launcher_item_app = /usr/share/applications/terminator.desktop
launcher_item_app = /usr/share/applications/xfce4-file-manager.desktop
launcher_item_app = /usr/share/applications/gedit.desktop
launcher_item_app = /usr/share/applications/iceweasel.desktop
# System Tray
systray = 1
systray_padding = 2 2 2
systray_sort = ascending
systray_background_id = 0
systray_icon_size = 14
systray_icon_asb = 100 0 0
# Clock
time1_format = %H:%M
time1_font = Corbel 10
clock_font_color = #d8d8d8 100
clock_padding = 4 4
clock_background_id = 0
clock_lclick_command = xdotool key super+d
clock_rclick_command = xdotool key super+space
# Tooltips
tooltip = 1
tooltip_padding = 2 2
tooltip_show_timeout = 0.0
tooltip_hide_timeout = 0.0
tooltip_background_id = 7
tooltip_font_color = #d8d8d8 100
tooltip_font = Corbel 10
# Mouse
mouse_middle = close
mouse_right = toggle
mouse_scroll_up = toggle
mouse_scroll_down = iconify
# Battery
battery = 1
battery_low_status = 20
battery_low_cmd = notify-send "battery low"
battery_hide = 96
bat1_font = Sans 10
bat2_font = Sans 8
battery_font_color = #FFFFFF 100
battery_padding = 2 0
battery_background_id = 0
# End of configOffline
Nothing too special
#---------------------------------------------
# TINT2 CONFIG FILE
#---------------------------------------------
# For more information about tint2, see:
# http://code.google.com/p/tint2/wiki/Welcome
#
# For more config file examples, see:
# http://crunchbanglinux.org/forums/topic/3232/my-tint2-config/
#---------------------------------------------
# BACKGROUND AND BORDER
#---------------------------------------------
# All items
rounded = 5
border_width = 1
background_color = #0f0f0f 90
border_color = #000000 90
# Marked item
rounded = 3
border_width = 0
background_color = #ffffff 50
border_color = #000000 100
# Non-marked items
rounded = 0
border_width = 0
background_color = #000000 0
border_color = #ffffff 100
#---------------------------------------------
# PANEL
#---------------------------------------------
panel_monitor = all
panel_position = bottom center
panel_size = 100% 22
panel_margin = 0 0
panel_padding = 2 0
font_shadow = 0
panel_background_id = 0
#---------------------------------------------
# TASKBAR
#---------------------------------------------
taskbar_mode = multi_desktop
taskbar_padding = 0 0 0
taskbar_background_id = 1
taskbar_active_background_id = 1
#---------------------------------------------
# TASKS
#---------------------------------------------
task_icon = 1
task_text = 0
task_width = 20
task_centered = 0
task_padding = 2 2
task_font = sans 8
task_font_color = #aaaaaa 100
task_active_font_color = #000000 100
task_background_id = 3
task_active_background_id = 2
#---------------------------------------------
# SYSTRAYBAR
#---------------------------------------------
systray_padding = 4 2 3
systray_background_id = 0
#---------------------------------------------
# CLOCK
#---------------------------------------------
time1_format = %H:%M
time1_font = sans 10
time2_format = %A %d %B
time2_font = sans 6
clock_font_color = #ffffff 76
clock_padding = 4 4
clock_background_id = 0
#---------------------------------------------
# BATTERY
#---------------------------------------------
battery = 0
battery_low_status = 15
battery_low_cmd = notify-send "battery low"
bat1_font = sans 8
bat2_font = sans 6
battery_font_color = #000000 76
battery_padding = 1 0
battery_background_id = 0
#---------------------------------------------
# MOUSE ACTION ON TASK
#---------------------------------------------
mouse_middle = none
mouse_right = none
mouse_scroll_up = toggle
mouse_scroll_down = iconifyLast edited by Jojan (2011-03-26 23:44:14)
Offline
leemaster81, how do you get the transparency with your openbox menu?
I love #! more than my own kids. I told them and they sympathized.
Offline
I guess he is using xcompmgr or cairo-compmgr.
Offline
I was asked for my tinti2 setup gkokaisel in the My Conky Config thread.
It comes with a Warning: This tint2 setup has been my default since #! v9.04.01. For this reason it is missing some of the newer setting found in the #! 10 r20110207 tint2 setup.
On the left is my email and trash conky, that red T appears when I have something in the trash bin.
On the right beside the tint2 clock, my ${uptime_short} conky.
My #! 9.04.02 tint2rc
# Tint2 config file
# For information on manually configuring tint2 see http://code.google.com/p/tint2/wiki/Configure
# Background definitions
# ID 1
rounded = 8
border_width = 1
background_color = #FFFFFF 0
border_color = #FFFFFF 20
# ID 2
rounded = 8
border_width = 0
background_color = #FFFFFF 20
border_color = #FFFFFF 20
# ID 3
rounded = 8
border_width = 0
background_color = #FFFFFF 0
border_color = #FFFFFF 0
# Panel
panel_monitor = all
panel_position = bottom center horizontal
panel_size = 86% 22
panel_margin = 0 5
panel_padding = 2 0 0
panel_dock = 0
wm_menu = 0
panel_layer = bottom
panel_background_id = 0
# Panel Autohide
autohide = 0
autohide_show_timeout = 0.0
autohide_hide_timeout = 0.0
autohide_height = 0
strut_policy = none
# Taskbar
taskbar_mode = multi_desktop
taskbar_padding = 0 0 0
taskbar_background_id = 1
#taskbar_active_background_id = 0
# Tasks
urgent_nb_of_blink = 7
task_icon = 1
task_text = 0
task_centered = 1
task_maximum_size = 30 32
task_padding = 1 1
task_background_id = 3
task_active_background_id = 2
task_urgent_background_id = 0
task_iconified_background_id = 0
# 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 = 100 0 0
# Fonts
task_font = sans 7
task_font_color = #FFFFFF 62
task_active_font_color = #FFFFFF 80
task_urgent_font_color = #FFFFFF 100
task_iconified_font_color = #FFFFFF 100
font_shadow = 0
# Launcher
# launcher_padding = 8 4 4
# launcher_background_id = 0
# launcher_icon_size = 24
# # Specify icon theme names with launcher_icon_theme.
# # if you have an XSETTINGS manager running (like xfsettingsd), tint2 will follow your current theme.
# launcher_icon_theme = gnome-colors-statler
# launcher_icon_theme = ShiningReprise
# # Each launcher_item_app must be a full path to a .desktop file
# launcher_item_app = /usr/share/applications/terminator.desktop
# launcher_item_app = /usr/share/applications/xfce4-file-manager.desktop
# launcher_item_app = /usr/share/applications/Thunar-folder-handler.desktop
# launcher_item_app = /usr/share/applications/gedit.desktop
# launcher_item_app = /usr/share/applications/iceweasel.desktop
# System Tray
systray = 1
systray_padding = 4 2 3
systray_sort = ascending
systray_background_id = 1
#systray_icon_size = 0
#systray_icon_asb = 100 0 0
# Clock
time1_format = %H:%M
time1_font = DejaVu Sans Mono bold 12
clock_font_color = #FFFFFF 100
clock_padding = 4 4
clock_background_id = 0
clock_rclick_command = ~/Conky/OBMenuS/Oob_gnu-txt
clock_lclick_command = ~/Conky/OBMenuS/ob-daily.sh
#clock_tooltip = %A %d %B
# Tooltips
tooltip = 0
tooltip_padding = 0 0
tooltip_show_timeout = 0
tooltip_hide_timeout = 0
tooltip_background_id = 0
tooltip_font = Sans 12
tooltip_font_color = #FFFFFF 100
# Mouse
mouse_middle = none
mouse_right = none
mouse_scroll_up = toggle # mouse pointer over the icon in tint2 panel
mouse_scroll_down = iconify # mouse pointer over the icon in tint2 panel
# Battery
#battery = 0
#battery_low_status = 20
#battery_low_cmd = notify-send "battery low"
#battery_hide = 90
#bat1_font = Sans 12
#bat2_font = Sans 12
#battery_font_color = #FFFFFF 100
#battery_padding = 0 0
#battery_background_id = 0
# End of configLast edited by Sector11 (2011-04-18 21:35:12)
Offline
I guess he is using xcompmgr or cairo-compmgr.
Thanks aiBo. Tempting but ...nah I'll try to resist the temptation and keep it simple!
I love #! more than my own kids. I told them and they sympathized.
Offline
Hi all, I put together a little package with all the parts of my weird theme with window buttons (in the vein of maximus) but for #! Here it is.
http://dl.dropbox.com/u/2148975/mending_fences.tar.gz
Here's some screenshots...there's also a short video of me using the window buttons
http://dl.dropbox.com/u/2148975/mending_fences_demo.ogv
and a video of an older version of the same set up...
http://dl.dropbox.com/u/2148975/noodlin … chbang.ogv
Last edited by bobrossw (2011-04-03 17:46:44)
Offline
>> bobrossw <<
Cool stuff you have done. I love it.
Life is really simple, but we insist on making it complicated. --Confucius--
Offline
Offline
Offline
I think it's Thunar too, and the WM is probably Openbox
If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres
Github
I am a #! forum moderator. Feel free to send me a PM with any question you have!
Offline
well I ventured into tint config, thanks to serious_lee's vertical config, props mate!
I changed it to multi desktop and tweaked the colors to fit. I'm still stuck on my green phase.
active taskbar is green, with the active window even more green.
that Shambler nearly ripped my head off. Trusty double barrel showed him who's king 
#---------------------------------------------
# BACKGROUND AND BORDER
#---------------------------------------------
# 1 - clock / sysbar
rounded = 3
border_width = 1
background_color = #000000 15
border_color = #ffffff 15
# 2 - task
rounded = 3
border_width = 1
background_color = #ffffff 0
border_color = #ffffff 20
# 3 - taskbar
rounded = 3
border_width = 1
background_color = #000000 15
border_color = #ffffff 15
# 4 - active taskbar
rounded = 3
border_width = 1
background_color = #00ff00 20
border_color = #00ff00 60
# 5 - active task
rounded = 3
border_width = 1
background_color = #00ff00 60
border_color = #ffffff 30
#---------------------------------------------
# PANEL
#---------------------------------------------
panel_monitor = all
panel_position = center left vertical
panel_size = 100% 45
panel_margin = 0 0
panel_padding = 6 0
font_shadow = 0
panel_background_id = 0
wm_menu = 0
#---------------------------------------------
# TASKBAR
#---------------------------------------------
taskbar_mode = multi_desktop
#taskbar_mode = single_desktop
taskbar_padding = 0 0 2
taskbar_background_id = 3
taskbar_active_background_id = 4
#---------------------------------------------
# TASKS
#---------------------------------------------
task_icon = 1
task_text = 0
task_width = 50
task_centered = 1
task_padding = 0 2
task_font = Aller 9
task_font_color = #ffffff 70
task_active_font_color = #ffffff 85
task_background_id = 2
task_active_background_id = 5
#---------------------------------------------
# SYSTRAYBAR
#---------------------------------------------
systray_padding = 2 8 0
systray_background_id = 1
#---------------------------------------------
# CLOCK
#---------------------------------------------
time1_format = %a %d
time1_font = Aller 7
time2_format = %I:%M
time2_font = Aller 10
clock_font_color = #ffffff 100
clock_padding = 6 4
clock_background_id = 1
#clock_lclick_command = xclock
#clock_rclick_command = orage
#---------------------------------------------
# BATTERY
#---------------------------------------------
battery = 0
battery_low_status = 10
battery_low_cmd = notify-send "battery low"
bat1_font = sans 8
bat2_font = sans 6
battery_font_color = #ffffff 76
battery_padding = 1 0
battery_background_id = 0
#---------------------------------------------
# MOUSE ACTION ON TASK
#---------------------------------------------
mouse_middle = none
mouse_right = none
mouse_scroll_up = toggle
mouse_scroll_down = iconifyNetbook edition
#---------------------------------------------
# BACKGROUND AND BORDER
#---------------------------------------------
# 1 - clock / sysbar
rounded = 3
border_width = 1
background_color = #000000 15
border_color = #ffffff 15
# 2 - task
rounded = 3
border_width = 1
background_color = #ffffff 0
border_color = #ffffff 20
# 3 - taskbar
rounded = 3
border_width = 1
background_color = #000000 15
border_color = #ffffff 15
# 4 - active taskbar
rounded = 3
border_width = 1
background_color = #00ff00 20
border_color = #00ff00 60
# 5 - active task
rounded = 3
border_width = 1
background_color = #00ff00 60
border_color = #ffffff 30
#---------------------------------------------
# PANEL
#---------------------------------------------
panel_monitor = all
panel_position = center left vertical
panel_size = 100% 35
panel_margin = 0 0
panel_padding = 0 0 ## adjust vertical pad from the to via 1st value
font_shadow = 0
panel_background_id = 0
wm_menu = 0
#---------------------------------------------
# TASKBAR
#---------------------------------------------
taskbar_mode = multi_desktop
#taskbar_mode = single_desktop
taskbar_padding = 1 1 1
taskbar_background_id = 3
taskbar_active_background_id = 4
#---------------------------------------------
# TASKS
#---------------------------------------------
task_icon = 1
task_text = 0
task_width = 40
task_centered = 1
task_padding = 0 2
task_font = Aller 9
task_font_color = #ffffff 70
task_active_font_color = #ffffff 85
task_background_id = 2
task_active_background_id = 5
#---------------------------------------------
# SYSTRAYBAR
#---------------------------------------------
systray_padding = 6 8 6
systray_background_id = 1
#---------------------------------------------
# CLOCK
#---------------------------------------------
time1_format = %a %d
time1_font = Monospace 6
time2_format = %I:%M
time2_font = Monospace 6
clock_font_color = #ffffff 100
clock_padding = 6 4
clock_background_id = 1
#clock_lclick_command = xclock
#clock_rclick_command = orage
#---------------------------------------------
# BATTERY
#---------------------------------------------
battery = 0
battery_low_status = 10
battery_low_cmd = notify-send "battery low"
bat1_font = sans 8
bat2_font = sans 6
battery_font_color = #ffffff 76
battery_padding = 1 0
battery_background_id = 0
#---------------------------------------------
# MOUSE ACTION ON TASK
#---------------------------------------------
mouse_middle = none
mouse_right = none
mouse_scroll_up = toggle
mouse_scroll_down = iconifyLast edited by kbmonkey (2011-07-16 14:25:33)
Offline
modified my tint2 to maximize application space without losing its function
http://i.imgur.com/4dxG7.png
it's always on top and the window controls are usable
#---------------------------------------------
# TINT2 CONFIG FILE
#---------------------------------------------
# For more information about tint2, see:
# http://code.google.com/p/tint2/wiki/Welcome
#
# For more config file examples, see:
# http://crunchbanglinux.org/forums/topic/3232/my-tint2-config/
# Background definitions
# ID 1
rounded = 0
border_width = 1
background_color = #0A0A0A 10
border_color = #121212 20
# ID 2 - task active
rounded = 1
border_width = 0
background_color = #d8d8d8 30
border_color = #d8d8d8 30
# ID 3 - task
rounded = 1
border_width = 0
background_color = #000000 0
border_color = #000000 0
# ID 4
rounded = 1
border_width = 1
background_color = #888888 20
border_color = #ED2323 60
# ID 5 - taskbar
rounded = 0
border_width = 1
background_color = #000000 0
border_color = #000000 0
# ID 6 - active taskbar
rounded = 0
border_width = 1
background_color = #d8d8d8 8
border_color = #d8d8d8 0
# ID 7 - tooltip
rounded = 3
border_width = 0
background_color = #222222 70
border_color = #222222 50
# ID 8
rounded = 1
border_width = 1
background_color = #888888 20
border_color = #888888 20
# Panel
panel_monitor = all
panel_position = top center horizontal
panel_items = TSC
panel_size = 92% 26
panel_margin = 0 0
panel_padding = 0 0
panel_dock = 0
wm_menu = 1
panel_layer = top
panel_background_id = 0
# Panel Autohide
autohide = 0
autohide_show_timeout = 0.3
autohide_hide_timeout = 1.5
autohide_height = 6
strut_policy = none
# Taskbara
taskbar_mode = multi_desktop
taskbar_padding = 6 0 6
taskbar_background_id = 5
taskbar_active_background_id = 0
taskbar_name = 0
taskbar_name_background_id = 0
taskbar_name_active_background_id = 0
taskbar_name_font = sans 9
taskbar_name_font_color = #d8d8d8 100
taskbar_name_active_font_color = #d8d8d8 100
# Tasks
urgent_nb_of_blink = 20
task_icon = 1
task_text = 0
task_centered = 1
task_maximum_size = 30 40
task_padding = 2 2
task_background_id = 3
task_active_background_id = 2
task_urgent_background_id = 4
task_iconified_background_id = 3
# Task Icons
task_icon_asb = 80 0 0
task_active_icon_asb = 100 0 0
task_urgent_icon_asb = 100 0 0
task_iconified_icon_asb = 80 0 0
# Fonts
task_font = sans 06_55 6
task_font_color = #d8d8d8 60
task_active_font_color = #d8d8d8 100
task_urgent_font_color = #FFFFFF 100
task_iconified_font_color = #d8d8d8 60
font_shadow = 0
# Launcher
launcher_padding = 8 4 4
launcher_background_id = 0
launcher_icon_size = 24
# Specify icon theme names with launcher_icon_theme.
# if you have an XSETTINGS manager running (like xfsettingsd), tint2 will follow your current theme.
launcher_icon_theme = gnome-colors-statler
# Each launcher_item_app must be a full path to a .desktop file
launcher_item_app = /usr/share/applications/terminator.desktop
launcher_item_app = /usr/share/applications/xfce4-file-manager.desktop
launcher_item_app = /usr/share/applications/gedit.desktop
launcher_item_app = /usr/share/applications/iceweasel.desktop
# System Tray
systray = 1
systray_padding = 4 2 3
systray_sort = ascending
systray_background_id = 0
systray_icon_size = 24
systray_icon_asb = 100 0 0
# Clock
time1_format = %H:%M
time1_font = sans 8
clock_font_color = #d8d8d8 100
clock_padding = 4 4
clock_background_id = 0
clock_lclick_command = gsimplecal
clock_rclick_command = gsimplecal
# Tooltips
tooltip = 1
tooltip_padding = 2 2
tooltip_show_timeout = 0.0
tooltip_hide_timeout = 0.0
tooltip_background_id = 7
tooltip_font_color = #d8d8d8 100
tooltip_font = sans normal 8.0
# Mouse
mouse_middle = none
mouse_right = toggle
mouse_scroll_up = toggle
mouse_scroll_down = iconify
# Battery
battery = 1
battery_low_status = 20
battery_low_cmd = notify-send "battery low"
battery_hide = 96
bat1_font = Sans 10
bat2_font = Sans 8
battery_font_color = #FFFFFF 100
battery_padding = 2 0
battery_background_id = 0
# End of configDesktop: http://i.imgur.com/0bptx.jpg
Offline
Code (I am working on it):
#---------------------------------------------
# TINT2 CONFIG FILE
#---------------------------------------------
#---------------------------------------------
# BACKGROUND AND BORDER
#---------------------------------------------
# ID 1
rounded = 0
border_width = 0
background_color = #D8D8D8 100
border_color = #444444 100
# ID 2
rounded = 4
border_width = 1
background_color = #E4E4E4 100
border_color = #ABABAB 100
# ID 3
rounded = 4
border_width = 1
background_color = #E4E4E4 20
border_color = #ABABAB 20
# ID 4
rounded = 4
border_width = 1
background_color = #E4E4E4 20
border_color = #ABABAB 20
# ID 5
rounded = 0
border_width = 1
background_color = #F5F5F5 100
border_color = #C3C3C3 100
# ID 6
rounded = 0
border_width = 1
background_color = #D8D8D8 100
border_color = #D8D8D8 100
#---------------------------------------------
# PANEL
#---------------------------------------------
panel_monitor = all
panel_position = bottom center horizontal
panel_size = 100% 31
panel_items = LTBSC
panel_margin = 0 0
panel_padding = 2 2 2
panel_dock = 0
wm_menu = 1
panel_layer = top
panel_background_id = 1
#---------------------------------------------
# TASKBAR
#---------------------------------------------
taskbar_mode = multi_desktop
taskbar_padding = 4 2 2
taskbar_background_id = 5
taskbar_active_background_id = 6
taskbar_name = 1
taskbar_name_padding = 4 4
taskbar_name_background_id = 0
taskbar_name_active_background_id = 0
taskbar_name_font = liberation sans bold 10
taskbar_name_font_color = #888888 80
taskbar_name_active_font_color = #3C3C3C 100
#---------------------------------------------
# TASKS
#---------------------------------------------
urgent_nb_of_blink = 20
task_icon = 1
task_text = 0
task_centered = 1
task_maximum_size = 40 40
task_padding = 6 3
task_background_id = 3
task_active_background_id = 2
task_urgent_background_id = 4
task_iconified_background_id = 4
task_icon_asb = 80 -30 -30
task_active_icon_asb = 100 0 0
task_urgent_icon_asb = 100 0 0
task_iconified_icon_asb = 60 -20 -20
task_font = liberation sans 10
task_font_color = #222222 100
task_active_font_color = #8F8F8F 100
task_urgent_font_color = #8F8F8F 100
task_iconified_font_color = #8F8F8F 100
font_shadow = 0
#---------------------------------------------
# SYSTRAYBAR
#---------------------------------------------
systray = 1
systray_padding = 8 4 5
systray_sort = descending
systray_background_id = 5
systray_icon_size = 0
systray_icon_asb = 90 -10 -10
#---------------------------------------------
# CLOCK
#---------------------------------------------
time1_format = %H:%M
time1_font = liberation sans bold 10
clock_font_color = #3C3C3C 100
clock_tooltip = %A %d %B
clock_padding = 5
clock_background_id = 5
clock_lclick_command = gcalctool
clock_rclick_command = orage
#---------------------------------------------
# BATTERY
#---------------------------------------------
battery = 1
battery_low_status = 20
battery_low_cmd = notify-send "battery low"
battery_hide = 25
bat1_font = liberation sans 10
bat2_font = liberation sans 8
battery_font_color = #3C3C3C 100
battery_padding = 5
battery_background_id = 5
#---------------------------------------------
# TOOLTIP
#---------------------------------------------
tooltip = 1
tooltip_padding = 4 2
tooltip_show_timeout = 0.0
tooltip_hide_timeout = 0.0
tooltip_background_id = 1
tooltip_font_color = #8F8F8F 80
tooltip_font = sans 8
#---------------------------------------------
# MOUSE ACTION ON TASK
#---------------------------------------------
mouse_middle = none
mouse_right = toggle
mouse_scroll_up = toggle
mouse_scroll_down = iconify
#---------------------------------------------
# AUTOHIDE OPTIONS
#---------------------------------------------
autohide = 0
autohide_show_timeout = 0.3
autohide_hide_timeout = 1.5
autohide_height = 6
strut_policy = follow_sizeenjoy it!
Offline
Mine is dead simple - it's black, the active window gets a white rectangle around it, and there's a systray.
# 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 = 0
border_width = 1
background_color = #000000 0
border_color = #D1D1D1 26
# ID 2
rounded = 0
border_width = 0
background_color = #FFFFFF 40
border_color = #D1D1D1 0
# ID 3
rounded = 0
border_width = 0
background_color = #000000 100
border_color = #FFFFFF 26
# Panel
panel_monitor = all
panel_position = bottom center horizontal
panel_size = 0 23
panel_margin = 0 0
panel_padding = 0 2 5
panel_dock = 0
wm_menu = 0
panel_layer = top
panel_background_id = 3
# Panel Autohide
autohide = 0
autohide_show_timeout = 0.0
autohide_hide_timeout = 0.0
autohide_height = 0
strut_policy = follow_size
# Taskbar
taskbar_mode = single_desktop
taskbar_padding = 0 0 5
taskbar_background_id = 0
#taskbar_active_background_id = 0
# Tasks
urgent_nb_of_blink = 7
task_icon = 0
task_text = 1
task_centered = 1
task_maximum_size = 220 30
task_padding = 3 1
task_background_id = 0
task_active_background_id = 1
task_urgent_background_id = 0
task_iconified_background_id = 0
# 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 = 100 0 0
# Fonts
task_font = ubuntu bold 7.5
task_font_color = #FFFFFF 82
task_active_font_color = #FFFFFF 82
task_urgent_font_color = #FFFFFF 100
task_iconified_font_color = #FFFFFF 100
font_shadow = 0
# System Tray
systray = 1
systray_padding = 6 0 6
systray_sort = ascending
systray_background_id = 0
systray_icon_size = 21
systray_icon_asb = 100 0 0
# Clock
time1_format = %H:%M
time1_font = Radio Space 8
time2_format = %d/%m
time2_font = Radio Space 6
clock_font_color = #FFFFFF 87
clock_padding = 8 0
clock_background_id = 0
clock_lclick_command = xte 'key XF86AudioPlay'
clock_rclick_command = xte 'key XF86AudioNext'
# Tooltips
tooltip = 0
tooltip_padding = 0 0
tooltip_show_timeout = 0
tooltip_hide_timeout = 0
tooltip_background_id = 0
tooltip_font = Sans 12
tooltip_font_color = #FFFFFF 100
# Mouse
mouse_middle = none
mouse_right = close
mouse_scroll_up = toggle
mouse_scroll_down = iconify
# Battery
battery = 0
battery_low_status = 10
battery_low_cmd = notify-send "battery low"
battery_hide = 90
bat1_font = sans 7
bat2_font = sans 7
battery_font_color = #FFFFFF 100
battery_padding = 1 0
battery_background_id = 0
# End of configOffline
Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.