You are not logged in.
http://farm4.static.flickr.com/3136/288 … 1018_m.jpg
Cleanhttp://farm4.static.flickr.com/3124/288 … bca4_m.jpg
BusyOS: Arch Linux 2008-06 x64 and Xfce4.
WP: Christy/Waves - Left Monitor by Mando Gomez.
lol at the little menu window list thing in the second shot
Offline
http://img212.imageshack.us/img212/6831 … sj9.th.pnghttp://img212.imageshack.us/images/thpix.gif
Just finally got my colors setup a bit better...
I like your terminal colours, you should post your ~/.Xdefaults
Offline
http://upload.snelhest.org/images/08092 … crotth.png
DWM 5.2, keeping it simple.
i like your wallpaper, mind sharing it?
Offline
Went back to one of my favourite wallpapers.
I have a love-hate relationship with dark themes, so we'll see how long this one lasts.
EDIT: Like the other guy said, IMAGESHAAAACK!
How do you make your menu with sytem information? Or generally how do you make does menus?
We met up with the aliens and guess what? They have no word for fluffy!
Offline
Honken wrote:http://upload.snelhest.org/images/08092 … crotth.png
DWM 5.2, keeping it simple.
i like your wallpaper, mind sharing it?
Here you go:
http://interfacelift.com/wallpaper_beta … trees.html
Offline
Pretty basic (and popular) Elegant Brit theme with JungleOrange icons.
Last edited by jase (2008-09-27 15:20:29)
Offline
@jase
Cool Desk dude
Elegant Brit Rocks!
My Blog - http://openmindlifestyle.wordpress.com/
Offline
Arkane wrote:Went back to one of my favourite wallpapers.
I have a love-hate relationship with dark themes, so we'll see how long this one lasts.
EDIT: Like the other guy said, IMAGESHAAAACK!
How do you make your menu with sytem information? Or generally how do you make does menus?
Openbox menus can read output from a script, see http://www.icculus.org/openbox/index.ph … Pipe_menus. So all you need is a script that outputs an Openbox menu specification. In my case, it's a Lua script:
#!/usr/bin/lua
netexec="wicd"
psexec="lxtask"
dateexec="dates"
fsexec="xdiskusage"
interface="ath0"
additem = function (label, exec)
if exec then print('<item label="'..label..'"><action name="Execute"><command>'..exec..'</command></action></item>')
else print('<item label="'..label..'"/>')
end
end
additem2 = function (label, actions)
if actions then print('<item label="'..label..'">'..actions..'</item>')
else print('<item label="'..label..'"/>')
end
end
separator = function(s)
if s then
print('<separator label="'..s..'"/>')
else
print("<separator/>")
end
end
print("<openbox_pipe_menu>")
separator('Base')
-- Base stuff
additem(io.popen("uname -sr"):read("*l"))
additem("Up: "..string.match(io.popen("uptime"):read("*l"), "%d+:%d+:%d+ up (.*),%s+%d+ users?,"))
--separator()
-- Date, time
additem(os.date("%A %x, %T"), dateexec)
separator('Memory')
-- Memory
free = io.popen("free -m")
free:read("*l")
mem1 = free:read("*l")
mem2 = free:read("*l")
memtotal = string.match(mem1, "Mem:%s+(%d+)")
memused = string.match(mem2, "(%d+)")
additem("Memory: "..string.format("%d", memused / memtotal * 100).."% of "..memtotal.."MB in use", psexec)
separator('CPU')
-- CPU
cpuinfo = io.popen("cat /proc/cpuinfo"):read("*a")
i = 0
for freq in string.gmatch(cpuinfo, "cpu MHz%s*:%s*([%d%.]+)") do
additem(string.format("CPU%d: %d MHz", i, tonumber(freq)), psexec)
i = i + 1
end
loadavg = io.popen("cat /proc/loadavg"):read("*a")
additem("Load Average: "..string.match(loadavg, "([%d%.]+ [%d%.]+ [%d%.]+)"), psexec)
additem("Temperature: "..string.match(io.popen('cat /proc/acpi/thermal_zone/TZ00/temperature'):read(), '%w+:%s+(%d+%s%w)'), psexec)
separator('Network')
-- Net
ifconfig = io.popen("ifconfig "..interface):read("*a")
iwconfig = io.popen("iwconfig "..interface):read("*a")
additem("IPv4: "..(string.match(ifconfig, "inet addr:%s*(%d+%.%d+%.%d+%.%d+)") or "-"), netexec)
additem("IPv6: "..(string.match(ifconfig, "inet6 addr:%s*([%w:/]+)") or "-"), netexec)
rate, quality = string.match(iwconfig, "Bit Rate=(%d+ [%w/]+)"), string.match(iwconfig, "Link Quality=(%d+)/100")
if rate and quality then additem(string.format("Signal: %s%% @ %s", quality, rate), netexec) end
separator('File systems')
-- Disk Usage
df = io.popen("df -h")
for line in df:lines() do
if string.match(line, "^/dev/%w+") then
local total, used, perc, mountpoint = string.match(line, "[^%s]+%s+([%w%.]+)%s+([%w%.]+)%s+[%w%.]+%s+(%w+%%)%s+([%w/]+)")
--print(total, used, perc, mountpoint)
additem(string.format("%-13s: %-4s of %-4s used (%s)", mountpoint, used, total, perc), fsexec.." "..mountpoint)
end
end
separator('Tmpfs')
-- Tmpfs usage.
data = io.popen("~/bin/tmpfs_usage")
for line in data:lines() do
local folder = string.match(line, '[^%s]+%s+([^%s]+)')
additem(line, 'rox '..folder)
end
separator('Power actions')
-- Power actions
if 0 == os.execute('[ -e /var/run/gdm.pid ]') then
-- use the gdm interface for shutdown and reboot (not suspend, don't want to log out)
additem2(" -> Shutdown", '<action name="Execute"><command>gdm-control --shutdown</command></action><action name="Exit"><prompt>false</prompt></action>')
additem2(" -> Reboot", '<action name="Execute"><command>gdm-control --reboot</command></action><action name="Exit"><prompt>false</prompt></action>')
else
additem(" -> Shutdown", "gksu -gm 'Your password is needed to perform this action.' halt")
additem(" -> Reboot", "gksu -gm 'Your password is needed to perform this action.' reboot")
end
additem(" -> Suspend", "gksu -gm 'Your password is needed to perform this action.' /etc/acpi/suspend2ram.sh")
print("</openbox_pipe_menu>")
What does not kill you will hurt a lot.
Offline
Openbox with fbpanel and yeahconsole, used with maximized apps (mostly)
http://img137.imageshack.us/img137/2/cleanll7.th.pnghttp://img137.imageshack.us/img137/9274 … rv6.th.pnghttp://img412.imageshack.us/img412/5350 … ox4.th.png
Wallpaper please
When death smiles at you, all you can do is smile back!
Blog
Offline
Offline
The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...
Offline
I like it! Could you tell me what Xfwm and GTK+ themes you're using?
Offline
Wallpaper is from deviantART
All other themes are custom. (modified murrine, transparent UbuntuStudio icons, matching Arch-xfce4 logos, and emerald truglass theme)
The font is called eurofurence.
Large View: http://i480.photobucket.com/albums/rr16 … t-15-1.jpg
Large View: http://i480.photobucket.com/albums/rr16 … hot-13.png
Large View: http://i480.photobucket.com/albums/rr16 … hot-12.png
Offline
Nice desk methuselah, have you got a direct link or username to search by on deviantart for the wallpaper?
Cheers
Offline
Offline
Nice desk methuselah, have you got a direct link or username to search by on deviantart for the wallpaper?
Cheers
Here is the wallpaper: http://mtbird.deviantart.com/art/Striped-99008447
I just used Inkscape to change the color of the Arch-xfce4 logo, and then GIMP to add it to the deviantART wallpaper.
EDIT: I added the Murrine gtkrc below if anybody wants to use this theme, it also looks better with the Murrine-SVN 67-1 engine in the AUR.
Last edited by methuselah (2008-09-28 14:20:58)
Offline
methuselah wrote:I like it! Could you tell me what Xfwm and GTK+ themes you're using?
Hello, the gtk theme is my own Murrine theme.
First you will need the "gtk-engine-murrine-svn 67-1" in the AUR: http://aur.archlinux.org/packages.php?ID=18624
and you can also add other murrine themes: http://aur.archlinux.org/packages.php?O … _Search=Go
Then log in as root, and:
mkdir /usr/share/themes/MurrinaNEW_silver/
mkdir /usr/share/themes/MurrinaNEW_silver/gtk-2.0/
Now while in root, add this gtkrc into the /usr/share/themes/MurrinaNEW_silver/gtk-2.0 directory:
style "theme-default"
{
GtkButton ::default_border = { 0, 0, 0, 0 }
GtkRange ::trough_border = 0
GtkPaned ::handle_size = 3
GtkRange ::slider_width = 15
GtkRange ::stepper_size = 15
GtkScrollbar ::min_slider_length = 35
GtkCheckButton ::indicator_size = 15
GtkMenuBar ::internal-padding = 0
GtkTreeView ::expander_size = 15
GtkExpander ::expander_size = 15
GtkScale ::slider-length = 24
xthickness = 1
ythickness = 1
fg[NORMAL] = "#000000" # option menu, button font, open tab
fg[PRELIGHT] = "#000000" # font color of menu roll over, and roll over fro radio/check boxes as well as button, Option button, and toggle button prelights.
fg[SELECTED] = "#000000" # Gtk combo font for drop down
fg[ACTIVE] = "#000000" # toggle font color, and active font for check/radio boxes, also for un-clicked tabs.
fg[INSENSITIVE] = "#4b4440" # little arrows on scrolls
bg[NORMAL] = "#E2E2E2"
bg[PRELIGHT] = "#E2E2E2"
bg[SELECTED] = "#D6D6D6" # menu selected roll over, and xfwm4 color
bg[INSENSITIVE] = "#E2E2E2" # background scroll arrows
bg[ACTIVE] = "#E2E2E2" # this (strangely) controls inactive tab BGs
base[NORMAL] = "#FFFFFF"
base[PRELIGHT] = "#878887"
base[ACTIVE] = "#B0B0B0"
base[SELECTED] = "#878887"
base[INSENSITIVE] = "#878887"
text[NORMAL] = "#000000" # font color for combo box (lame setting)
text[PRELIGHT] = "#000000"
text[ACTIVE] = "#000001"
text[SELECTED] = "#FFFFFF"
text[INSENSITIVE] = "#4b4440"
engine "murrine"
{
menuitemstyle = 2 # 0 = flat, 1 = glassy, 2 = striped
scrollbar_color = "#D6D6D6"
contrast = 1.0
glazestyle = 0 # 0 = flat hilight, 1 = curved hilight, 2 = concave style
menubarstyle = 3 # 0 = flat, 1 = glassy, 2 = gradient, 3 = striped
menubaritemstyle = 0 # 0 = menuitem look, 1 = button look
menuitemstyle = 1 # 0 = flat, 1 = glassy, 2 = striped
listviewheaderstyle = 1 # 0 = flat, 1 = glassy
roundness = 0 # 0 = squared, 1 = old default, more will increase roundness
animation = TRUE # FALSE = disabled, TRUE = enabled
}
}
style "theme-wide" = "theme-default"
{
xthickness = 2
ythickness = 2
}
style "theme-wider" = "theme-default"
{
xthickness = 3
ythickness = 3
}
style "theme-entry" = "theme-wider"
{
bg[SELECTED] = "#878887" # url box outline
}
style "theme-button" = "theme-wider"
{
bg[NORMAL] = "#D6D6D6"
bg[INSENSITIVE] = "#D6D6D6"
bg[PRELIGHT] = "#EBEBEB"
bg[ACTIVE] = "#878887"
text[NORMAL] = "#000001"
}
style "theme-notebook" = "theme-wide"
{
bg[NORMAL] = "#EBEBEB"
bg[INSENSITIVE] = "#EBEBEB"
bg[SELECTED] = "#878887"
}
style "theme-tasklist" = "theme-default"
{
xthickness = 5
ythickness = 3
}
style "theme-menu" = "theme-default"
{
xthickness = 2
ythickness = 1
}
style "theme-menu-item" = "theme-default"
{
ythickness = 3
fg[NORMAL] = "#000000" # text for menubar and drop down menu
#fg[PRELIGHT] = "#FFFFFF"
text[PRELIGHT] = "#000000" # text on combox entry dropdown menu prelight-roll over
}
style "theme-menubar" = "theme-default"
{
bg[NORMAL] = "#878887"
fg[NORMAL] = "#FFFFFF"
fg[ACTIVE] = "#FFFFFF"
text[NORMAL] = "#FFFFFF"
text[PRELIGHT] = "#FFFFFF"
base[PRELIGHT] = "#5D8D76"
base[SELECTED] = "#4DB224"
}
style "theme-menubar-item"
{
ythickness = 4
fg[PRELIGHT] = "#000000" # prelight font color of menubar
bg[PRELIGHT] = "#000000"
}
style "theme-tree" = "theme-default"
{
xthickness = 2
ythickness = 2
}
style "theme-frame-title" = "theme-default"
{
fg[NORMAL] = "#000000"
}
style "theme-tooltips" = "theme-default"
{
xthickness = 4
ythickness = 4
bg[NORMAL] = { 1.0,1.0,0.75 }
}
style "theme-progressbar" = "theme-wide"
{
xthickness = 1
ythickness = 1
fg[PRELIGHT] = "#878887"
}
style "theme-combo" = "theme-button"
{
text[NORMAL] = "#000000"
}
style "metacity-frame"
{
# Normal base color
#bg[NORMAL] = "#bbbbbb"
# Unfocused title background color
#bg[INSENSITIVE] = { 0.8, 0.8, 0.8 }
# Unfocused title text color
#fg[INSENSITIVE] = { 1.55, 1.55, 1.55 }
# Focused icon color
#fg[NORMAL] = { 0.2, 0.2, 0.2 }
# Focused title background color
#bg[SELECTED] = "#444444"
#base[ACTIVE] = "#f2f2f2"
# Focused title text color
fg[SELECTED] = "#E2E2E2"
}
class "MetaFrames" style "metacity-frame"
class "GtkWindow" style "metacity-frame"
# widget styles
class "GtkWidget" style "theme-default"
class "GtkButton" style "theme-button"
class "GtkScale" style "theme-button"
class "GtkCombo" style "theme-button"
class "GtkRange" style "theme-wide"
class "GtkFrame" style "theme-wide"
class "GtkMenu" style "theme-menu"
class "GtkEntry" style "theme-entry"
class "GtkMenuItem" style "theme-menu-item"
class "GtkNotebook" style "theme-notebook"
class "GtkProgressBar" style "theme-progressbar"
class "*MenuBar*" style "theme-menubar"
widget_class "*MenuItem.*" style "theme-menu-item"
widget_class "*MenuBar.*" style "theme-menubar-item"
# combobox stuff
widget_class "*.GtkComboBox.GtkButton" style "theme-combo"
widget_class "*.GtkCombo.GtkButton" style "theme-combo"
# tooltips stuff
widget_class "*.tooltips.*.GtkToggleButton" style "theme-tasklist"
widget "gtk-tooltips" style "theme-tooltips"
# treeview stuff
widget_class "*.GtkTreeView.GtkButton" style "theme-tree"
widget_class "*.GtkCTree.GtkButton" style "theme-tree"
widget_class "*.GtkList.GtkButton" style "theme-tree"
widget_class "*.GtkCList.GtkButton" style "theme-tree"
widget_class "*.GtkFrame.GtkLabel" style "theme-frame-title"
# notebook stuff
widget_class "*.GtkNotebook.*.GtkEventBox" style "theme-notebook"
widget_class "*.GtkNotebook.*.GtkViewport" style "theme-notebook"
Now you have my MurrineNEW_silver gtk theme looking like this: /usr/share/themes/MurinneNEW_siver/gtk-2.0/gtkrc
enjoy.
The window theme you asked about is actually an emerald theme that I made for compiz-fusion. I used one of the default themes called "Mirage" for the buttons and a starting point, and then with a few modifications I made it my own. The font I used is called: "Juice"
If you use compiz-fusion with emerald, you could make your own theme with the same settings from this "theme.ini":
[legacy_settings]
active_outer=#888888
active_outer_alpha=0.59999999999999998
active_inner=#888888
active_inner_alpha=0.59999999999999998
active_title_outer=#888888
active_title_outer_alpha=0.59999999999999998
active_title_inner=#888888
active_title_inner_alpha=0.59999999999999998
active_separator_line=#ffffff
active_separator_line_alpha=0
active_window_halo=#000000
active_window_halo_alpha=1
active_window_highlight=#ffffff
active_window_highlight_alpha=0.65000000000000002
active_window_shadow=#2dc0ff
active_window_shadow_alpha=0.80000000000000004
active_contents_halo=#000000
active_contents_halo_alpha=0.80000000000000004
active_contents_highlight=#ffffff
active_contents_highlight_alpha=0.59999999999999998
active_contents_shadow=#ffffff
active_contents_shadow_alpha=0.59999999999999998
inactive_outer=#888888
inactive_outer_alpha=0.5
inactive_inner=#888888
inactive_inner_alpha=0.5
inactive_title_outer=#888888
inactive_title_outer_alpha=0.5
inactive_title_inner=#888888
inactive_title_inner_alpha=0.5
inactive_separator_line=#000000
inactive_separator_line_alpha=0
inactive_window_halo=#000000
inactive_window_halo_alpha=1
inactive_window_highlight=#ffffff
inactive_window_highlight_alpha=0.55000000000000004
inactive_window_shadow=#ffffff
inactive_window_shadow_alpha=0.55000000000000004
inactive_contents_halo=#000000
inactive_contents_halo_alpha=1
inactive_contents_highlight=#ffffff
inactive_contents_highlight_alpha=0.55000000000000004
inactive_contents_shadow=#ffffff
inactive_contents_shadow_alpha=0.55000000000000004
round_top_left=true
round_top_right=true
round_bottom_left=true
round_bottom_right=true
radius=6.5
[oxygen_settings]
active_base=#000000
active_base_alpha=0
active_glow=#000000
active_glow_alpha=0
active_sides=#000000
active_sides_alpha=0
active_separator_line=#000000
active_separator_line_alpha=0
active_window_halo=#000000
active_window_halo_alpha=0
active_window_highlight=#000000
active_window_highlight_alpha=0
active_window_shadow=#000000
active_window_shadow_alpha=0
active_contents_halo=#000000
active_contents_halo_alpha=0
active_contents_highlight=#000000
active_contents_highlight_alpha=0
active_contents_shadow=#000000
active_contents_shadow_alpha=0
inactive_base=#000000
inactive_base_alpha=0
inactive_glow=#000000
inactive_glow_alpha=0
inactive_sides=#000000
inactive_sides_alpha=0
inactive_separator_line=#000000
inactive_separator_line_alpha=0
inactive_window_halo=#000000
inactive_window_halo_alpha=0
inactive_window_highlight=#000000
inactive_window_highlight_alpha=0
inactive_window_shadow=#000000
inactive_window_shadow_alpha=0
inactive_contents_halo=#000000
inactive_contents_halo_alpha=0
inactive_contents_highlight=#000000
inactive_contents_highlight_alpha=0
inactive_contents_shadow=#000000
inactive_contents_shadow_alpha=0
round_top_left=false
round_top_right=false
round_bottom_left=false
round_bottom_right=false
radius=0
[line_settings]
active_border=#000000
active_border_alpha=0
active_title_bar=#000000
active_title_bar_alpha=0
inactive_border=#000000
inactive_border_alpha=0
inactive_title_bar=#000000
inactive_title_bar_alpha=0
[pixmap_settings]
active_top_use_scaled=false
active_top_left_use_scaled=false
active_top_left_width=0
active_top_left_use_width=false
active_top_left_height=0
active_top_left_use_height=false
active_top_right_use_scaled=false
active_top_right_width=0
active_top_right_use_width=false
active_top_right_height=0
active_top_right_use_height=false
active_left_use_scaled=false
active_left_width=0
active_left_use_width=false
active_right_use_scaled=false
active_right_width=0
active_right_use_width=false
active_bottom_use_scaled=false
active_bottom_left_use_scaled=false
active_bottom_left_width=0
active_bottom_left_use_width=false
active_bottom_left_height=0
active_bottom_left_use_height=false
active_bottom_right_use_scaled=false
active_bottom_right_width=0
active_bottom_right_use_width=false
active_bottom_right_height=0
active_bottom_right_use_height=false
active_title_use_scaled=false
active_title_left_use_scaled=false
active_title_left_width=0
active_title_left_use_width=false
active_title_right_use_scaled=false
active_title_right_width=0
active_title_right_use_width=false
inactive_use_active_pixmaps=true
inactive_top_use_scaled=true
inactive_top_left_use_scaled=false
inactive_top_left_width=0
inactive_top_left_use_width=false
inactive_top_left_height=0
inactive_top_left_use_height=false
inactive_top_right_use_scaled=false
inactive_top_right_width=0
inactive_top_right_use_width=false
inactive_top_right_height=0
inactive_top_right_use_height=false
inactive_left_use_scaled=false
inactive_left_width=0
inactive_left_use_width=false
inactive_right_use_scaled=false
inactive_right_width=0
inactive_right_use_width=false
inactive_bottom_use_scaled=false
inactive_bottom_left_use_scaled=false
inactive_bottom_left_width=0
inactive_bottom_left_use_width=false
inactive_bottom_left_height=0
inactive_bottom_left_use_height=false
inactive_bottom_right_use_scaled=false
inactive_bottom_right_width=0
inactive_bottom_right_use_width=false
inactive_bottom_right_height=0
inactive_bottom_right_use_height=false
inactive_title_use_scaled=false
inactive_title_left_use_scaled=false
inactive_title_left_width=0
inactive_title_left_use_width=false
inactive_title_right_use_scaled=false
inactive_title_right_width=0
inactive_title_right_use_width=false
active_outer=#ffffff
active_outer_alpha=0
active_inner=#ffffff
active_inner_alpha=0
active_title_outer=#ffffff
active_title_outer_alpha=0
active_title_inner=#ffffff
active_title_inner_alpha=0
active_separator_line=#000000
active_separator_line_alpha=0
inactive_outer=#000000
inactive_outer_alpha=0.22
inactive_inner=#000000
inactive_inner_alpha=0.22
inactive_title_outer=#000000
inactive_title_outer_alpha=0.22
inactive_title_inner=#000000
inactive_title_inner_alpha=0.22
inactive_separator_line=#000000
inactive_separator_line_alpha=0
round_top_left=true
round_top_right=true
round_bottom_left=true
round_bottom_right=true
top_radius=15
bottom_radius=5
[vrunner_settings]
active_title_left=#cdcdcd
active_title_left_alpha=1
active_title_middle=#ffffff
active_title_middle_alpha=1
active_title_right=#cdcdcd
active_title_right_alpha=1
active_color_contrast=0.94999999999999996
active_alpha_contrast=1
active_title_notch_position=0.46999999999999997
active_curve_offset=0
active_use_glow=false
active_glow_inner=#000000
active_glow_inner_alpha=0
active_glow_radius=7
active_separator_line=#000000
active_separator_line_alpha=0
active_window_halo=#9c9c9c
active_window_halo_alpha=1
active_window_highlight=#ffffff
active_window_highlight_alpha=0
active_window_shadow=#ffffff
active_window_shadow_alpha=0
active_contents_halo=#9c9c9c
active_contents_halo_alpha=1
active_contents_highlight=#ffffff
active_contents_highlight_alpha=0
active_contents_shadow=#ffffff
active_contents_shadow_alpha=0
inactive_title_left=#ffffff
inactive_title_left_alpha=1
inactive_title_middle=#cdcdcd
inactive_title_middle_alpha=1
inactive_title_right=#ffffff
inactive_title_right_alpha=1
inactive_color_contrast=0.94999999999999996
inactive_alpha_contrast=1
inactive_title_notch_position=0.46999999999999997
inactive_curve_offset=0
inactive_use_glow=false
inactive_glow_inner=#000000
inactive_glow_inner_alpha=0
inactive_glow_radius=7
inactive_separator_line=#000000
inactive_separator_line_alpha=0
inactive_window_halo=#9c9c9c
inactive_window_halo_alpha=1
inactive_window_highlight=#ffffff
inactive_window_highlight_alpha=0
inactive_window_shadow=#ffffff
inactive_window_shadow_alpha=0
inactive_contents_halo=#9c9c9c
inactive_contents_halo_alpha=1
inactive_contents_highlight=#ffffff
inactive_contents_highlight_alpha=0
inactive_contents_shadow=#ffffff
inactive_contents_shadow_alpha=0
round_top_left=false
round_top_right=false
round_bottom_left=false
round_bottom_right=false
radius=0
[zootreeves_settings]
active_outer=#000000
active_outer_alpha=0
active_inner=#000000
active_inner_alpha=0
active_title_outer=#000000
active_title_outer_alpha=0.57999999999999996
active_title_inner=#ffffff
active_title_inner_alpha=0.65000000000000002
active_gradient_repeat_enabled=true
active_gradient_repeat_direction_vertical=false
active_gradient_repeat_direction_diagonal=true
active_gradient_repeat_height=2.1000000000000001
active_separator_line=#000000
active_separator_line_alpha=0
active_window_frame_halo=#ff0000
active_window_frame_halo_alpha=0
active_window_highlight=#000000
active_window_highlight_alpha=0
active_window_shadow=#000000
active_window_shadow_alpha=0
active_contents_halo=#000000
active_contents_halo_alpha=0
active_contents_highlight=#000000
active_contents_highlight_alpha=0
active_contents_shadow=#000000
active_contents_shadow_alpha=0
inactive_outer=#000000
inactive_outer_alpha=0
inactive_inner=#000000
inactive_inner_alpha=0
inactive_title_outer=#000000
inactive_title_outer_alpha=0
inactive_title_inner=#000000
inactive_title_inner_alpha=0
inactive_gradient_repeat_enabled=true
inactive_gradient_repeat_direction_vertical=false
inactive_gradient_repeat_direction_diagonal=false
inactive_gradient_repeat_height=3.1000000000000001
inactive_separator_line=#000000
inactive_separator_line_alpha=0
inactive_window_frame_halo=#000000
inactive_window_frame_halo_alpha=0
inactive_window_highlight=#000000
inactive_window_highlight_alpha=0
inactive_window_shadow=#000000
inactive_window_shadow_alpha=0
inactive_contents_halo=#000000
inactive_contents_halo_alpha=0
inactive_contents_highlight=#000000
inactive_contents_highlight_alpha=0
inactive_contents_shadow=#000000
inactive_contents_shadow_alpha=0
enable_maximised_colors=false
gradient_repeat_disabled_maximised=false
outer_maximised_color=#000000
outer_maximised_alpha=0
inner_maximised_color=#000000
inner_maximised_alpha=0
round_top_left=false
round_top_right=false
round_bottom_left=false
round_bottom_right=false
frame_radius=0
titlebar_radius=0
window_gap=0
show_border_maximised=false
show_border_minimised=false
minimised_border=7
enable_title_bar_dip=false
enable_bar_dip_button_part=false
title_bar_dip_title_width=511
title_bar_dip_button_width=104
title_bar_dip_radius=1
round_tri=false
enable_left_bar_dip=false
left_bar_dip_radius=0
enable_left_bar_dip_lower_part=false
left_bar_dip_offset=0
pixmaps_titlebarpart_enabled=true
pixmaps_titlebarpart_repeat_enabled=false
pixmaps_buttonpart_enabled=true
pixmaps_buttonpart_repeat_enabled=false
pixmaps_titlebar_enabled=true
pixmaps_titlebar_repeat_enabled=false
[truglass_settings]
active_base=#eeeeee
active_base_alpha=0.34999999999999998
active_upper_title_glow=#000000
active_upper_title_glow_alpha=0
active_upper_glow=#ffffff
active_upper_glow_alpha=0.59999999999999998
active_lower_glow=#ffffff
active_lower_glow_alpha=0.80000000000000004
active_middle_glow=#000000
active_middle_glow_alpha=0
active_outer_glow=#000000
active_outer_glow_alpha=0
active_separator_line=#000000
active_separator_line_alpha=0
active_window_halo=#000000
active_window_halo_alpha=0.69999999999999996
active_window_highlight=#ffffff
active_window_highlight_alpha=0.69999999999999996
active_window_shadow=#ffffff
active_window_shadow_alpha=0.69999999999999996
active_contents_halo=#000000
active_contents_halo_alpha=0.69999999999999996
active_contents_highlight=#ffffff
active_contents_highlight_alpha=0.5
active_contents_shadow=#ffffff
active_contents_shadow_alpha=0.5
inactive_base=#eeeeee
inactive_base_alpha=0.25
inactive_upper_title_glow=#000000
inactive_upper_title_glow_alpha=0
inactive_upper_glow=#ffffff
inactive_upper_glow_alpha=0.45000000000000001
inactive_lower_glow=#ffffff
inactive_lower_glow_alpha=0.55000000000000004
inactive_middle_glow=#000000
inactive_middle_glow_alpha=0
inactive_outer_glow=#000000
inactive_outer_glow_alpha=0
inactive_separator_line=#000000
inactive_separator_line_alpha=0
inactive_window_halo=#000000
inactive_window_halo_alpha=0.5
inactive_window_highlight=#ffffff
inactive_window_highlight_alpha=0.5
inactive_window_shadow=#ffffff
inactive_window_shadow_alpha=0.5
inactive_contents_halo=#000000
inactive_contents_halo_alpha=0.69999999999999996
inactive_contents_highlight=#ffffff
inactive_contents_highlight_alpha=0.5
inactive_contents_shadow=#ffffff
inactive_contents_shadow_alpha=0.5
round_top_left=true
round_top_right=true
round_bottom_left=true
round_bottom_right=true
radius=3.5
glow_height=9.6999999999999993
[engine_version]
vrunner=0.2
[engine]
engine=vrunner
[buttons]
use_pixmap_buttons=true
use_button_glow=false
use_button_inactive_glow=false
active_button=#ffffff
active_button_alpha=0
active_button_halo=#ffffff
active_button_halo_alpha=0
inactive_button=#ffffff
inactive_button_alpha=0
inactive_button_halo=#848484
inactive_button_halo_alpha=0
vertical_offset=3
horizontal_offset=1
[shadow]
shadow_color=#000000
shadow_opacity=0.64000000000000001
shadow_radius=5.7000000000000002
shadow_offset_x=0
shadow_offset_y=3
[borders]
top=4
bottom=3
left=3
right=3
[titlebar]
active_text=#ffffff
active_text_alpha=1
active_text_halo=#333334
active_text_halo_alpha=1
inactive_text=#333334
inactive_text_alpha=0.80000000000000004
inactive_text_halo=#ffffff
inactive_text_halo_alpha=0.29999999999999999
titlebar_font=Juice 10
min_titlebar_height=20
title_object_layout=IA:T:N(2)X(2)C:
[theme]
creator=bvc | http://gnomethemes.org
description=Mirage
theme_version=0.61
suggested=Mirage Engine
version=0.7.8
Just make a new emerald theme using the Mirage theme, then replace the Mirage theme.ini with my theme.ini above. You might also have to change the font.
Last edited by methuselah (2008-09-28 14:27:25)
Offline
Offline
Dmz, "control mpd with cellphone"? Does that actually work?
Offline
Dmz, "control mpd with cellphone"? Does that actually work?
Yeah, and it's fucking awesome. http://jamse.sourceforge.net/
Offline