You are not logged in.
edma2 wrote:Jimi wrote:@edma
how come your font looks different than mine? I'm assuming somewhere my pc is trying to make it fine
http://img337.imageshack.us/img337/5186/wtffi.th.pngthat's bizzare i dunno why its colored like that?
make sure its its [font]-7, not font:pixelsize=7Ugh, I had to turn off anti-aliasing, still a few things look off (the # is illegible)
turn off hinting as well. i am also using the lcd filter if that makes any difference.
Offline
Polished minimal ui: xmonad, xmobar, gnome ui.
Self-explained screenshots.Clean:
http://img527.imageshack.us/img527/5761/screen3s.th.pngLayed out:
http://img63.imageshack.us/img63/8380/screen1l.th.png
http://img240.imageshack.us/img240/2797/screen2p.th.png
Terminal font please? I've never seen such a great combination of practicality and style in a monospace font before.
Offline
Terminal font please? big_smile I've never seen such a great combination of practicality and style in a monospace font before.
Offline
I finally setup Xmonad to my liking:
XMonad-darcs
Xmobar
Uzbl-git
Screen w/ weechat-git, centerim, rtorrent, ncmpcpp, htop, remote ssh, and 3 shells
Conky-cli
linux_logo
Thanks
Last edited by securitybreach (2009-10-16 05:08:23)
"Every normal man must be tempted at times to spit upon his hands, hoist the black flag, and begin slitting throats." -- H.L. Mencken
Website Configs
Forum Admin: Bruno's All Things Linux
securitybreach<a>archlinux.us
Offline
Is that pypanel with that calendar? Could you post your configs please? Very nice desktop !
#------------------------------------------------------------------------------
#
# PyPanel v2.4 Configuration
#
# This configuration file is a Python script that will be executed when
# PyPanel is started. In order for PyPanel to start properly, make sure that
# this file contains proper Python formatting and no syntax errors.
#------------------------------------------------------------------------------
VERSION = 2.4 # Config file version
#------------------------------------------------------------------------------
# Colors: Format is hex triplet - 0xrrggbb
#------------------------------------------------------------------------------
BG_COLOR = "0x171010" # Panel background and tinting color
TASK_COLOR = "0x807556" # Normal task name color
FOCUSED_COLOR = "0xF1EEEE" # Focused task name color
SHADED_COLOR = "0x808080" # Shaded task name color
MINIMIZED_COLOR = "0x3D3D3E" # Minimized task name color
DESKTOP_COLOR = "0x000000" # Desktop name color
CLOCK_COLOR = "0x5D5D5D" # Clock text color
LINE_COLOR = "0x3D3535" # Vertical line color
# Text Shadow Colors
TASK_SHADOW_COLOR = "0xffffff"
FOCUSED_SHADOW_COLOR = "0xffffff"
SHADED_SHADOW_COLOR = "0xffffff"
MINIMIZED_SHADOW_COLOR = "0xffffff"
DESKTOP_SHADOW_COLOR = "0xffffff"
CLOCK_SHADOW_COLOR = "0xffffff"
#------------------------------------------------------------------------------
# Panel Spacing and Location Options: Measured in pixels
#------------------------------------------------------------------------------
P_LOCATION = 1 # Panel placement: 0 = top, 1 = bottom
P_WIDTH = 0 # Panel width: 0 = Use full screen width
P_START = 0 # Starting X coordinate of the panel
P_SPACER = 10 # Spacing between panel objects
P_HEIGHT = 18 # Panel height
#------------------------------------------------------------------------------
# Icon Size Options: Measured in pixels
#------------------------------------------------------------------------------
I_HEIGHT = 0 # Panel application icon height
I_WIDTH = 0 # Panel application icon Width
APPL_I_HEIGHT = 19 # Application launcher icon height
APPL_I_WIDTH = 32 # Application launcher icon width
TRAY_I_HEIGHT = 15 # System tray icon height (usually 16 or 24)
TRAY_I_WIDTH = 15 # System tray icon width (usually 16 or 24)
# If TRAY_I_WIDTH is set to 0, then the
# width specified by the tray app will be used
#------------------------------------------------------------------------------
# Panel Clock Format: 'man strftime' for detailed formatting options and help
#------------------------------------------------------------------------------
CLOCK_FORMAT = "%Y-%m-%d %H:%M" # Ex: 2004-09-25 17:45
#------------------------------------------------------------------------------
# Clock Delay: Seconds between each clock update during periods of inactivity
#------------------------------------------------------------------------------
CLOCK_DELAY = 20
#------------------------------------------------------------------------------
# Hidden Application List: Apps listed here will not be display on the panel
# The application name is its WM_CLASS name, use 'xprop' to find WM_CLASS
# Ex: ["xmms", "xine", "gDesklets"]
#------------------------------------------------------------------------------
HIDE_LIST = []
#------------------------------------------------------------------------------
# Hidden Panel Size: Size of the panel when it's hidden/minimized
#------------------------------------------------------------------------------
HIDDEN_SIZE = 2
#------------------------------------------------------------------------------
# Panel Text Font: This option takes either a traditional or Xft font string
# Ex: "-schumacher-clean-medium-r-normal-*-12-*-*-*-*-*-*-*"
# "aquafont-8"
#------------------------------------------------------------------------------
FONT = "fixed-7"
#------------------------------------------------------------------------------
# Show All Applications: Show apps from all desktops or just the current
# 0: Disabled - Only applications on the current desktop will be displayed
# 1: Enabled - Selected apps are moved to the current desktop
# 2: Enabled - Current desktop is changed to the selected apps desktop
#------------------------------------------------------------------------------
SHOWALL = 0 # 0, 1 or 2 - see descriptions above
#------------------------------------------------------------------------------
# Show Minimized/Iconified Applications: Show only minimized apps or all apps
# 0: Disabled - Show all applications on the panel
# 1: Enabled - Show only minimized apps on the panel
#------------------------------------------------------------------------------
SHOWMINIMIZED = 0
#------------------------------------------------------------------------------
# Application Icon List: List of custom icons for specific applications
# The application name is its WM_CLASS name, use 'xprop' to find WM_CLASS
#
# The "default" entry is used for applications with no icon. If left "",
# PyPanel will use the default icon distributed with the source.
#
# Add entries using the following format -
# "<application name>" : "<full path to icon>",
#------------------------------------------------------------------------------
ICON_LIST = {
"default" : "",
"example" : "/usr/share/imlib2/data/images/audio.png",
}
#------------------------------------------------------------------------------
# Application Launch List: Ordered list of icons and applications for the
# application launcher.
#
# Add entries using the following format -
# ("<executable>", "<full path to icon>")
#------------------------------------------------------------------------------
LAUNCH_LIST = [
#("wicd-client", "/home/ramon/.icons/network.png"),
#("emesene", "/usr/share/emesene/themes/default/userPanel.png"),
("pcmanfm", "/home/ramon/.icons/home2.png"),
#("sakura", "/home/ramon/.icons/terminal.png"),
]
#------------------------------------------------------------------------------
# Background Alpha/Shade Level: 0 (Fully Translucent) -> 255 (Fully Opaque)
# BG_COLOR is used for tinting
#------------------------------------------------------------------------------
SHADE = 250
#------------------------------------------------------------------------------
# Misc. Options: 1 = Enabled/Yes, 0 = Disabled/No
#------------------------------------------------------------------------------
ABOVE = 1 # Panel is always above other apps
APPICONS = 1 # Show application icons
AUTOHIDE = 0 # Autohide uses the CLOCK_DELAY timer above
SHADOWS = 0 # Show text shadows
SHOWLINES = 1 # Show object seperation lines
SHOWBORDER = 0 # Show a border around the panel
#------------------------------------------------------------------------------
# Desktop Names: Configure the names of your desktops
# If the option is [], PyPanel will attempt to use the desktop name specified
# by the XServer, if that fails it will use the desktop number as its name
# Ex. ["One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight"]
#------------------------------------------------------------------------------
DESKTOP_NAMES = []
#------------------------------------------------------------------------------
# Panel Layout: -----------------------------------
# [ 1 ][ 2 ][ 3 ][ 4 ][ 5 ]
# -----------------------------------
#
# The panel layout is split into 5 sections numbered 1, 2, 3, 4 or 5 as shown
# in the diagram above. Each of the following objects can be enabled by
# assigning it a section number or disabled by assigning it 0:
#------------------------------------------------------------------------------
DESKTOP = 0 # Desktop name section
TASKS = 3 # Task names section
TRAY = 4 # System tray section
CLOCK = 5 # Clock section
LAUNCHER = 2 # Application launcher section
#------------------------------------------------------------------------------
# Button Event Function Definitions
#------------------------------------------------------------------------------
# Left click - button 1
# Middle click - button 2
# Right click - button 3
# Wheel up - button 4
# Wheel down - button 5
#
# changeDesktop(x)
# - Change Desktop: Increase or decrease the current desktop by 'x' amount
#
# toggleShade(task)
# - Shade or Unshade an application
#
# toggleHidden()
# - Minimize the panel to the top or bottom depending on its start location
#
# toggleMinimize(task, traise=1)
# - Minimize or Unminimize an application and optionally raise it
#
# taskRaise(task, focus=1)
# - Raise an application to the top of the window list and optionally focus it
#
# taskLower(task, focus=0)
# - Lower an app to the bottom of the window list and optionally focus it
#
# taskFocus(task)
# - Give focus to the selected application, if it has focus then minimize it
#
# showDesktop()
# - Toggle between hiding and unhiding ALL applications
#------------------------------------------------------------------------------
#----------------------------------
def desktopButtonEvent(pp, button):
#----------------------------------
""" Button event handler for the panel's desktop object """
if button == 1:
pp.changeDesktop(-1)
elif button == 2:
pp.changeDesktop(2)
elif button == 3:
pp.changeDesktop(1)
elif button == 4:
pp.changeDesktop(1)
elif button == 5:
pp.changeDesktop(-1)
#--------------------------------
def clockButtonEvent(pp, button):
#--------------------------------
""" Button event handler for the panel's clock object """
if button == 1:
os.system("/home/ramon/.dzen_calendar &")
elif button == 2:
pass
elif button == 3:
pp.toggleHidden()
elif button == 4:
pp.showDesktop()
elif button == 5:
pp.showDesktop()
#--------------------------------
def panelButtonEvent(pp, button):
#--------------------------------
""" Button event handler for the panel with no active tasks """
if button == 1:
pass
elif button == 2:
pass
elif button == 3:
pass
elif button == 4:
pass
elif button == 5:
pass
#-------------------------------------
def taskButtonEvent(pp, button, task):
#-------------------------------------
""" Button event handler for the panel's tasks """
if button == 1:
pp.taskFocus(task)
elif button == 2:
# Destroy the application
task.obj.destroy()
elif button == 3:
# Ex. - XMMS doesn't shade, so we want to minimize it instead and
# still use button 3 to shade other applications
# task.tclass is the tasks class name (WM_CLASS)
if "xmms" in task.tclass:
pp.toggleMinimize(task)
else:
pp.toggleShade(task)
elif button == 4:
pp.taskRaise(task, focus=1)
elif button == 5:
pp.taskLower(task, focus=0)
Check this: http://urukrama.wordpress.com/2008/05/3 … anel-tips/
arst
Offline
sanus|art wrote:CLEAN:
http://www.sanusart.com/files/2009-10-1 … -thumb.png
DIRTY:
http://www.sanusart.com/files/2009-10-1 … -thumb.pngThis time - OpenBox,conky,adeskbar,tint2.
Really nice desktop. Which GTK theme is that?
Dyne by lyre (if spelled right) @ box-look.org
SANUSART - free VST plug-ins | Music | Web design | Graphics | Sound engineering | Software | Tutorials | PHP scripts
Offline
Could you share your gtk theme mod with us please! Looks great!
Here you go: Shiki-Sublime-Glossy.zip (20 KB) Adjust to whichever color scheme you prefer. If you want it without gloss, here it is: Shiki-Sublime.zip (20 KB) Credit for the original Shiki-Colors theme goes to perfectska04.
Offline
heazky wrote:Is that pypanel with that calendar? Could you post your configs please? Very nice desktop !
#------------------------------------------------------------------------------ # # PyPanel v2.4 Configuration # # This configuration file is a Python script that will be executed when # PyPanel is started. In order for PyPanel to start properly, make sure that # this file contains proper Python formatting and no syntax errors. #------------------------------------------------------------------------------ VERSION = 2.4 # Config file version #------------------------------------------------------------------------------ # Colors: Format is hex triplet - 0xrrggbb #------------------------------------------------------------------------------ BG_COLOR = "0x171010" # Panel background and tinting color TASK_COLOR = "0x807556" # Normal task name color FOCUSED_COLOR = "0xF1EEEE" # Focused task name color SHADED_COLOR = "0x808080" # Shaded task name color MINIMIZED_COLOR = "0x3D3D3E" # Minimized task name color DESKTOP_COLOR = "0x000000" # Desktop name color CLOCK_COLOR = "0x5D5D5D" # Clock text color LINE_COLOR = "0x3D3535" # Vertical line color # Text Shadow Colors TASK_SHADOW_COLOR = "0xffffff" FOCUSED_SHADOW_COLOR = "0xffffff" SHADED_SHADOW_COLOR = "0xffffff" MINIMIZED_SHADOW_COLOR = "0xffffff" DESKTOP_SHADOW_COLOR = "0xffffff" CLOCK_SHADOW_COLOR = "0xffffff" #------------------------------------------------------------------------------ # Panel Spacing and Location Options: Measured in pixels #------------------------------------------------------------------------------ P_LOCATION = 1 # Panel placement: 0 = top, 1 = bottom P_WIDTH = 0 # Panel width: 0 = Use full screen width P_START = 0 # Starting X coordinate of the panel P_SPACER = 10 # Spacing between panel objects P_HEIGHT = 18 # Panel height #------------------------------------------------------------------------------ # Icon Size Options: Measured in pixels #------------------------------------------------------------------------------ I_HEIGHT = 0 # Panel application icon height I_WIDTH = 0 # Panel application icon Width APPL_I_HEIGHT = 19 # Application launcher icon height APPL_I_WIDTH = 32 # Application launcher icon width TRAY_I_HEIGHT = 15 # System tray icon height (usually 16 or 24) TRAY_I_WIDTH = 15 # System tray icon width (usually 16 or 24) # If TRAY_I_WIDTH is set to 0, then the # width specified by the tray app will be used #------------------------------------------------------------------------------ # Panel Clock Format: 'man strftime' for detailed formatting options and help #------------------------------------------------------------------------------ CLOCK_FORMAT = "%Y-%m-%d %H:%M" # Ex: 2004-09-25 17:45 #------------------------------------------------------------------------------ # Clock Delay: Seconds between each clock update during periods of inactivity #------------------------------------------------------------------------------ CLOCK_DELAY = 20 #------------------------------------------------------------------------------ # Hidden Application List: Apps listed here will not be display on the panel # The application name is its WM_CLASS name, use 'xprop' to find WM_CLASS # Ex: ["xmms", "xine", "gDesklets"] #------------------------------------------------------------------------------ HIDE_LIST = [] #------------------------------------------------------------------------------ # Hidden Panel Size: Size of the panel when it's hidden/minimized #------------------------------------------------------------------------------ HIDDEN_SIZE = 2 #------------------------------------------------------------------------------ # Panel Text Font: This option takes either a traditional or Xft font string # Ex: "-schumacher-clean-medium-r-normal-*-12-*-*-*-*-*-*-*" # "aquafont-8" #------------------------------------------------------------------------------ FONT = "fixed-7" #------------------------------------------------------------------------------ # Show All Applications: Show apps from all desktops or just the current # 0: Disabled - Only applications on the current desktop will be displayed # 1: Enabled - Selected apps are moved to the current desktop # 2: Enabled - Current desktop is changed to the selected apps desktop #------------------------------------------------------------------------------ SHOWALL = 0 # 0, 1 or 2 - see descriptions above #------------------------------------------------------------------------------ # Show Minimized/Iconified Applications: Show only minimized apps or all apps # 0: Disabled - Show all applications on the panel # 1: Enabled - Show only minimized apps on the panel #------------------------------------------------------------------------------ SHOWMINIMIZED = 0 #------------------------------------------------------------------------------ # Application Icon List: List of custom icons for specific applications # The application name is its WM_CLASS name, use 'xprop' to find WM_CLASS # # The "default" entry is used for applications with no icon. If left "", # PyPanel will use the default icon distributed with the source. # # Add entries using the following format - # "<application name>" : "<full path to icon>", #------------------------------------------------------------------------------ ICON_LIST = { "default" : "", "example" : "/usr/share/imlib2/data/images/audio.png", } #------------------------------------------------------------------------------ # Application Launch List: Ordered list of icons and applications for the # application launcher. # # Add entries using the following format - # ("<executable>", "<full path to icon>") #------------------------------------------------------------------------------ LAUNCH_LIST = [ #("wicd-client", "/home/ramon/.icons/network.png"), #("emesene", "/usr/share/emesene/themes/default/userPanel.png"), ("pcmanfm", "/home/ramon/.icons/home2.png"), #("sakura", "/home/ramon/.icons/terminal.png"), ] #------------------------------------------------------------------------------ # Background Alpha/Shade Level: 0 (Fully Translucent) -> 255 (Fully Opaque) # BG_COLOR is used for tinting #------------------------------------------------------------------------------ SHADE = 250 #------------------------------------------------------------------------------ # Misc. Options: 1 = Enabled/Yes, 0 = Disabled/No #------------------------------------------------------------------------------ ABOVE = 1 # Panel is always above other apps APPICONS = 1 # Show application icons AUTOHIDE = 0 # Autohide uses the CLOCK_DELAY timer above SHADOWS = 0 # Show text shadows SHOWLINES = 1 # Show object seperation lines SHOWBORDER = 0 # Show a border around the panel #------------------------------------------------------------------------------ # Desktop Names: Configure the names of your desktops # If the option is [], PyPanel will attempt to use the desktop name specified # by the XServer, if that fails it will use the desktop number as its name # Ex. ["One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight"] #------------------------------------------------------------------------------ DESKTOP_NAMES = [] #------------------------------------------------------------------------------ # Panel Layout: ----------------------------------- # [ 1 ][ 2 ][ 3 ][ 4 ][ 5 ] # ----------------------------------- # # The panel layout is split into 5 sections numbered 1, 2, 3, 4 or 5 as shown # in the diagram above. Each of the following objects can be enabled by # assigning it a section number or disabled by assigning it 0: #------------------------------------------------------------------------------ DESKTOP = 0 # Desktop name section TASKS = 3 # Task names section TRAY = 4 # System tray section CLOCK = 5 # Clock section LAUNCHER = 2 # Application launcher section #------------------------------------------------------------------------------ # Button Event Function Definitions #------------------------------------------------------------------------------ # Left click - button 1 # Middle click - button 2 # Right click - button 3 # Wheel up - button 4 # Wheel down - button 5 # # changeDesktop(x) # - Change Desktop: Increase or decrease the current desktop by 'x' amount # # toggleShade(task) # - Shade or Unshade an application # # toggleHidden() # - Minimize the panel to the top or bottom depending on its start location # # toggleMinimize(task, traise=1) # - Minimize or Unminimize an application and optionally raise it # # taskRaise(task, focus=1) # - Raise an application to the top of the window list and optionally focus it # # taskLower(task, focus=0) # - Lower an app to the bottom of the window list and optionally focus it # # taskFocus(task) # - Give focus to the selected application, if it has focus then minimize it # # showDesktop() # - Toggle between hiding and unhiding ALL applications #------------------------------------------------------------------------------ #---------------------------------- def desktopButtonEvent(pp, button): #---------------------------------- """ Button event handler for the panel's desktop object """ if button == 1: pp.changeDesktop(-1) elif button == 2: pp.changeDesktop(2) elif button == 3: pp.changeDesktop(1) elif button == 4: pp.changeDesktop(1) elif button == 5: pp.changeDesktop(-1) #-------------------------------- def clockButtonEvent(pp, button): #-------------------------------- """ Button event handler for the panel's clock object """ if button == 1: os.system("/home/ramon/.dzen_calendar &") elif button == 2: pass elif button == 3: pp.toggleHidden() elif button == 4: pp.showDesktop() elif button == 5: pp.showDesktop() #-------------------------------- def panelButtonEvent(pp, button): #-------------------------------- """ Button event handler for the panel with no active tasks """ if button == 1: pass elif button == 2: pass elif button == 3: pass elif button == 4: pass elif button == 5: pass #------------------------------------- def taskButtonEvent(pp, button, task): #------------------------------------- """ Button event handler for the panel's tasks """ if button == 1: pp.taskFocus(task) elif button == 2: # Destroy the application task.obj.destroy() elif button == 3: # Ex. - XMMS doesn't shade, so we want to minimize it instead and # still use button 3 to shade other applications # task.tclass is the tasks class name (WM_CLASS) if "xmms" in task.tclass: pp.toggleMinimize(task) else: pp.toggleShade(task) elif button == 4: pp.taskRaise(task, focus=1) elif button == 5: pp.taskLower(task, focus=0)
Check this: http://urukrama.wordpress.com/2008/05/3 … anel-tips/
Thanks!
Offline
xmonad, dzen2, conky-cli,...
can i see your dzen2 and conky configs? Thanks
If you think of MS-DOS as mono, and Windows as stereo,
then Linux is Dolby Digital and all the music is free...
Offline
@Octopoid: Nice! Do you have your screen tilted or what? Also I would love to know what gtk theme and what fonts you're using
Last edited by robrene (2009-10-16 12:44:29)
Offline
Well, I finally got around to uploading a screenshot. One of those things I keep meaning to do but never getting around to.
I finally tried tiling WMs. Every time I heard someone else going on about tiling, I couldn't see what the fuss was about. (So it arranges your windows for you? What, you're too lazy to arrange them yourself, or something...?)
Then I decided to give it a try and WOW! It irritates me when I have to take my hands off the keyboard to reach for the mouse or touchpad. (Yes, Vimperator, I mean you with your stupid inability to zoom in on the full size of images with a keyboard shortcut...)
Clean shot of Awesome, with xcompmgr, parcellite, trayfreq and WICD.
And I always thought I'd never give up the elegance of Openbox, or the bling of Compiz for anything... I haven't logged into either of them since.
Hi Sukie. Any chance of a link to your wallpaper. Thanks
Offline
@Octopoid: Nice! Do you have your screen tilted or what? Also I would love to know what gtk theme and what fonts you're using
Yes, I use my monitor in portrait mode.
The GTK theme is »Clearlooks«.
Fonts:
xterm - TheMixMono
firefox:
Title - Quadraat Sans
Text - Coranto
Monospace - Quadraat Sans Mono
These are all commercial fonts, but you can find them if you search a little.
Offline
@bosha
dzen
--{{{ Dzen
logHook' :: Handle -> X ()
logHook' dzenSbar = do
fadeInactiveLogHook 0xdddddddd
dynamicLogWithPP $ myDzenPP dzenSbar
sBarCmd :: String
sBarCmd = "dzen2 -e 'onstart=lower' -x '0' -y '0' -h '15' -w '470' -ta 'l' -fg '#f0f0f0' -bg '#000000' -fn '-*-profont-*-*-*-*-11-*-*-*-*-*-*-*'"
topBarCmd :: String
topBarCmd = "sleep 1 && conky -c /home/paule/.xmonad/conkyrc | dzen2 -e 'onstart=lower' -fg '#f0f0f0' -bg '#000000' -h '15' -w 1024 -ta 'r' -fn '-*-profont-*-*-*-*-11-*-*-*-*-*-*-*'"
botBarCmd :: String
botBarCmd = "sleep 1 && conky -c /home/paule/.xmonad/conky_botrc | dzen2 -e 'onstart=lower' -x '0' -y '752' -fg '#f0f0f0' -bg '#000000' -w 960 -h '16' -ta 'l' -fn '-*-profont-*-*-*-*-11-*-*-*-*-*-*-*'"
myDzenPP dzenSbar = defaultPP
{ ppCurrent = wrap "^p()[^fg(#f87a7d)" "^fg()]^fg(#777777)^p()"
, ppVisible = wrap "^p(2)^fg()[^fg(#5A7086)" "^fg()]^fg()^p(2)"
, ppHidden = wrap "^p(2)^fg(#777777)""^fg()^p(2)"
--, ppHiddenNoWindows = wrap "^fg(#555555)" "^fg()"
, ppUrgent = wrap "!^fg(#e9c789)^p()" "^fg(#777777)^p()"
, ppSep = " "
, ppWsSep = ""
, ppTitle = dzenColor "#ffffff" "" . wrap """"
, ppLayout = dzenColor "#BA8500" "" .
(\x -> case x of
"Maximize Full" -> "^fg(#BA8500)^i(/home/paule/.dzen/full.xbm)"
"Maximize ResizableTall" -> "^fg(#BA8500)^i(/home/paule/.dzen/tall.xbm)"
"Maximize Mirror ResizableTall" -> "^fg(#BA8500)^i(/home/paule/.dzen/mtall.xbm)"
"Maximize Hinted Mirror ResizableTall" -> "^fg(#BA8500)^i(/home/paule/.dzen/layout-mirror-bottom.xbm)"
-- "Spiral" -> "^fg(#777777)^i(/home/paule/.dzen/layout-im-tall.xbm)"
"Maximize Grid" -> "^fg(#777777)^i(/home/paule/.dzen/grid.xbm)"
"Maximize IM Grid" -> "[im]"
"Maximize SimplestFloat" -> "[spl]"
_ -> x
)
, ppOutput = hPutStrLn dzenSbar
}
--}}}
conky_botrc
conkybackground no
out_to_console yes
update_interval 1.0
total_run_times 0
#use_spacer none
#out_to_x no
cpu_avg_samples 2
net_avg_samples 2
# Subtract file system buffers from used memory?
no_buffers yes
text_buffer_size 512
TEXT
^fg(#777777)||| ^fg(#7BA879)$mpd_status^fg(#777777) ||| ^fg(#BA8500)^fg(#cdcaca)$mpd_smart ^fg(#777777)||| ^fg(#a2a2a2)^fg(#5A7086)$mpd_elapsed ^fg(#a2a2a2)-> ^fg(#5A7086)$mpd_length^fg(#777777) || ^fg(#BA8500)Vol: ^fg(#a2a2a2)$ibm_volume^fg(#777777) | ^fg(#777777)Rep: ^fg(#a2a2a2)$mpd_repeat^fg(#777777) | ^fg(#777777)Ran: ^fg(#a2a2a2)$mpd_random^fg(#777777) ||| Lcd: ^fg(#a2a2a2)$ibm_brightness_botrc
conkyrc
background no
out_to_console yes
update_interval 2
total_run_times 0
#use_spacer none
#out_to_x no
cpu_avg_samples 2
net_avg_samples 2
# Subtract file system buffers from used memory?
no_buffers yes
text_buffer_size 512
TEXT
${if_empty ${exec ifconfig eth1 | grep 'inet addr:'}}^i(/home/paule/.dzen/dish.xbm) ${else}^fg(#cdcaca)^i(/home/paule/.dzen/wifi_01.xbm) ^fg(#a2a2a2)${wireless_essid eth1} (^fg(#7F7F7F)${wireless_link_qual_perc eth1}%^fg(#a2a2a2))${endif} ^fg(#777777)| ^fg(#008A00)^i(/home/paule/.dzen/cpu.xbm) ^fg(#7BA879)$cpu% ($freq_g) ^fg(#008A00)^i(/home/paule/.dzen/temp.xbm) ^fg(#7BA879)${ibm_temps 0}C ^fg(#7BA879)${ibm_temps 3}C ${ibm_fan}rpm ^fg(#777777)| ^fg(#7F7F7F)^i(/home/paule/.dzen/mem.xbm) $memperc% ^fg(#777777)| ^fg(#5A7086)${if_empty ${execi 5 echo $(awk '{print $2}' /proc/acpi/ac_adapter/AC/state | grep 'on-line')}}^i(/home/paule/.dzen/bat_low_01.xbm)${else}^i(/home/paule/.dzen/ac_01.xbm)${endif} $battery_percent% ^fg(#777777)| ^fg(#BA8500)${time %R} ^fg(#8B6914)(${time %a %d})
Offline
Dyne by lyre (if spelled right) @ box-look.org
Thanks
Offline
It's Lyrae .
Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy
Offline
ath0 wrote:Really like it, especially the deep colors. mind sharing the .Xdefaults or you main theme colors?
Thanks
here is it http://ix.io/p1
Offline
@nictki Thanks
If you think of MS-DOS as mono, and Windows as stereo,
then Linux is Dolby Digital and all the music is free...
Offline
It's Lyrae .
Hey, what happened to Lyrae, haven't seen her around anywhere for a long time. Always loved her stuff.
Offline
Offline
Sixtiesish colors + XMonad
Notice the different colors for the layout indicator. Pretty extreme huh? EXTREEEEEEEEEEEEEME!
Offline