You are not logged in.

#301 2008-06-21 21:47:41

Barrucadu
Member
From: York, England
Registered: 2008-03-30
Posts: 1,158
Website

Re: June 2008 Screenshots

Rokixz wrote:

Nice Barrucadu, is this panel is a pypanel?

Yes, here's the .pypanelrc if you want it:

#------------------------------------------------------------------------------
#
#                         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        = "0x176386"    # Panel background and tinting color
TASK_COLOR      = "0x79c3ee"    # Normal task name color
FOCUSED_COLOR   = "0xffffff"    # Focused task name color
SHADED_COLOR    = "0xbbbbbb"    # Shaded task name color
MINIMIZED_COLOR = "0xffffff"    # Minimized task name color
DESKTOP_COLOR   = "0x000000"    # Desktop name color
CLOCK_COLOR     = "0x000000"    # Clock text color
LINE_COLOR      = "0x3a4d62"    # 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        = 6             # Spacing between panel objects
P_HEIGHT        = 24            # Panel height

#------------------------------------------------------------------------------
# Icon Size Options: Measured in pixels
#------------------------------------------------------------------------------
I_HEIGHT        = 16            # Panel application icon height
I_WIDTH         = 16            # Panel application icon Width
APPL_I_HEIGHT   = 24            # Application launcher icon height
APPL_I_WIDTH    = 24            # Application launcher icon width
TRAY_I_HEIGHT   = 24            # System tray icon height (usually 16 or 24)
TRAY_I_WIDTH    = 24            # 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     = 5

#------------------------------------------------------------------------------
# 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            = "bitstream vera sans-8"

#------------------------------------------------------------------------------
# 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     = [
                   ("gimp-2.2", "/usr/share/imlib2/data/images/paper.png"),
                  ]

#------------------------------------------------------------------------------
# Background Alpha/Shade Level: 0 (Fully Translucent) -> 255 (Fully Opaque)
# BG_COLOR is used for tinting
#------------------------------------------------------------------------------
SHADE           = 100

#------------------------------------------------------------------------------
# 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      = 1             # 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           = 1             # Task names section
TRAY            = 2             # System tray section
CLOCK           = 0             # Clock section
LAUNCHER        = 0             # 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("xclock &")
    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)

Offline

#302 2008-06-22 00:51:23

pedepy
Member
Registered: 2007-02-21
Posts: 198

Re: June 2008 Screenshots

karoshi wrote:

I wish... but, no.

isnt that Christina Ricci ?


chupocabra ... psupsuspsu psu psu

Offline

#303 2008-06-22 02:56:31

Gullible Jones
Member
Registered: 2004-12-29
Posts: 4,863

Re: June 2008 Screenshots

screenshotmw4.th.png

GTK/Metacity: Elegant Cold Blue
Icons: ALLBLACK
Font: Dejavu Sans
Wallpaper: "Grey Night" from fusedeffects.com

Offline

#304 2008-06-22 05:50:27

hBd
Member
From: Romania - Cluj Napoca
Registered: 2008-06-08
Posts: 241
Website

Re: June 2008 Screenshots

Barrucadu wrote:

I decided to base a theme around Arch-tan:

http://blog.yarrt.com/wp-content/screen … -thumb.png

U can remove the white (GTK theme's) background for the system tray icon's if u want. U need to comment the first line of these line's:

[b]bg_pixmap[NORMAL]         = "Panel/panel-bg.png"[/b]
#    bg_pixmap[ACTIVE]         = "Panel/panel-bg.png"
#    bg_pixmap[SELECTED]         = "Panel/panel-bg.png"
#    bg_pixmap[INSENSITIVE]         = "Panel/panel-bg.png"
#    bg_pixmap[PRELIGHT]         = "Panel/panel-bg.png"

http://bbs.archlinux.org/viewtopic.php?id=44302

But just if u want wink
Nice desk btw!

Offline

#305 2008-06-22 14:43:31

kremso
Member
Registered: 2008-06-17
Posts: 14

Re: June 2008 Screenshots

I was not able to find the fedora wallpaper that haench showed us on the first page, so I recreated it from his screenshots using the gimp's clone tool.

haenchblueod9.th.png

Offline

#306 2008-06-22 19:03:01

karoshi
Member
From: Marburg
Registered: 2008-02-26
Posts: 182

Re: June 2008 Screenshots

pedepy wrote:
karoshi wrote:

I wish... but, no.

isnt that Christina Ricci ?

Yeah!


It's a bug planet!

Offline

#307 2008-06-22 19:30:55

bslagowski
Member
Registered: 2008-02-23
Posts: 102

Re: June 2008 Screenshots

kremso wrote:

I was not able to find the fedora wallpaper that haench showed us on the first page, so I recreated it from his screenshots using the gimp's clone tool.

google "fedora infinity wallpaper":

http://fedoraproject.org/wiki/Artwork/F … ound3Final

or

http://people.redhat.com/duffy/artwork/infinity-24/

Offline

#308 2008-06-22 19:37:19

thayer
Fellow
From: Vancouver, BC
Registered: 2007-05-20
Posts: 1,560
Website

Re: June 2008 Screenshots

scotti wrote:

Best Openbox desktop I've seen yet. Could I get your pypanel config? Also, what are the fonts used here? Thanks!

Sure, I've posted most of my configs to our website: http://cinderwick.ca/projects/configs


bladdo wrote:
thayer wrote:

Wallpaper: modified version of "diagonal" (Does anyone know the original author?)

wow nice background, link?

Finally got around to this too: http://cinderwick.ca/projects/archminimalist  (scroll down to the wallpapers)

Last edited by thayer (2008-06-22 19:37:44)


thayer williams ~ cinderwick.ca

Offline

#309 2008-06-22 20:48:50

Breakage
Member
From: London
Registered: 2008-02-12
Posts: 198
Website

Re: June 2008 Screenshots

New shot from me, just customised clearlooks quicksilver. xfce, compiz fusion, emerald.

camo_by_duttybreakage392.png.xs.jpg

@thayer. liking the minimal logo & walls. cool

Offline

#310 2008-06-23 02:46:31

freakcode
Member
From: São Paulo - Brazil
Registered: 2007-11-03
Posts: 410
Website

Re: June 2008 Screenshots

Breakage wrote:

New shot from me, just customised clearlooks quicksilver. xfce, compiz fusion, emerald.

http://xs228.xs.to/xs228/08250/camo_by_ … png.xs.jpg

@thayer. liking the minimal logo & walls. cool

How can you read with a font @ that pixel size?  hmm

Offline

#311 2008-06-23 04:06:50

Megamixman
Member
Registered: 2008-05-04
Posts: 73

Re: June 2008 Screenshots

freakcode, that size is nothing compared to the rediculous sizes i've seen people use. Although I will admit, I never understood why people can justfiy killing their eyes for a little bit extra screen real estate.

Offline

#312 2008-06-23 07:46:50

Barrucadu
Member
From: York, England
Registered: 2008-03-30
Posts: 1,158
Website

Re: June 2008 Screenshots

That text isn't too small... Then again, I am short sighted and my monitor is relatively close to me so small text could be easier for me to read than some.

Offline

#313 2008-06-23 08:11:09

yettenet
Member
Registered: 2007-05-17
Posts: 129

Re: June 2008 Screenshots

Breakage wrote:

New shot from me, just customised clearlooks quicksilver. xfce, compiz fusion, emerald.

http://xs228.xs.to/xs228/08250/camo_by_ … png.xs.jpg

@thayer. liking the minimal logo & walls. cool

What's that system monitoring tool?

Offline

#314 2008-06-23 08:44:49

amokkk
Member
From: PL
Registered: 2008-04-18
Posts: 51
Website

Re: June 2008 Screenshots

yettenet wrote:
Breakage wrote:

New shot from me, just customised clearlooks quicksilver. xfce, compiz fusion, emerald.

http://xs228.xs.to/xs228/08250/camo_by_ … png.xs.jpg

@thayer. liking the minimal logo & walls. cool

What's that system monitoring tool?

htop


Through the darkness of future past / The magician longs to see / One chants out between two worlds / Fire walk with me.
bobik_the_traveller: Dell LS/p3 400/128/40/Sony Ericsson GC79,Philips SNN6500
LAST.FM

Offline

#315 2008-06-23 12:00:50

Breakage
Member
From: London
Registered: 2008-02-12
Posts: 198
Website

Re: June 2008 Screenshots

freakcode wrote:

How can you read with a font @ that pixel size?  hmm

Surprisingly very very easily, never strains my eyes. But I dont have my monitors like a couple of meters away stuck on a wall. Suppose I just have good eye sight. smile

And as you can probably tell i'm not a fan of those huge ugly .ttf fonts and microsoft fonts, they still look nasty (imo) at 7px. smile

Last edited by Breakage (2008-06-23 12:05:32)

Offline

#316 2008-06-23 14:44:03

mrcold
Member
Registered: 2008-01-24
Posts: 150

Re: June 2008 Screenshots

Breakage wrote:
freakcode wrote:

How can you read with a font @ that pixel size?  hmm

Surprisingly very very easily, never strains my eyes. But I dont have my monitors like a couple of meters away stuck on a wall. Suppose I just have good eye sight. smile

And as you can probably tell i'm not a fan of those huge ugly .ttf fonts and microsoft fonts, they still look nasty (imo) at 7px. smile

what font is it?

Offline

#317 2008-06-23 15:01:09

kevin89
Arch Linux f@h Team Member
From: Netherlands
Registered: 2007-03-14
Posts: 218

Re: June 2008 Screenshots

Back to gnome for a bit smile

2008-06-23-170022_1280x1024_scrot989.png.xs.jpg

Offline

#318 2008-06-23 15:57:52

yettenet
Member
Registered: 2007-05-17
Posts: 129

Re: June 2008 Screenshots

amokkk wrote:
yettenet wrote:
Breakage wrote:

New shot from me, just customised clearlooks quicksilver. xfce, compiz fusion, emerald.

http://xs228.xs.to/xs228/08250/camo_by_ … png.xs.jpg

@thayer. liking the minimal logo & walls. cool

What's that system monitoring tool?

htop

nay, I meant the graphical one, not the CLI-based. tongue

Offline

#319 2008-06-23 16:36:32

Breakage
Member
From: London
Registered: 2008-02-12
Posts: 198
Website

Re: June 2008 Screenshots

yettenet wrote:

I meant the graphical one.

It's xfce4-taskmanager.

Offline

#320 2008-06-23 18:14:34

yettenet
Member
Registered: 2007-05-17
Posts: 129

Re: June 2008 Screenshots

Breakage wrote:
yettenet wrote:

I meant the graphical one.

It's xfce4-taskmanager.

Thank you! smile

Offline

#321 2008-06-23 22:20:59

SilverTab
Member
Registered: 2006-12-09
Posts: 13

Re: June 2008 Screenshots

Here's mine...

Clean:
2008-06-23-175032_384x307_scrot-thumb.png

Less clean:
2008-06-23-175112_384x307_scrot-thumb.png

Using:
Awesome 2.3 (slightly modified default config)
Amazing
Stalonetray
urxvt
feh
...

Offline

#322 2008-06-23 23:45:36

colbert
Member
Registered: 2007-12-16
Posts: 809

Re: June 2008 Screenshots

desktop062308_thumb.jpg
desktop062308busy_thumb.jpg

Offline

#323 2008-06-24 09:57:40

Stalafin
Member
From: Berlin, Germany
Registered: 2007-10-26
Posts: 617

Re: June 2008 Screenshots

colbert:
Is that nautilus? oO And what fonts do you use for the panel and the windows?

Offline

#324 2008-06-24 10:57:23

Gullible Jones
Member
Registered: 2004-12-29
Posts: 4,863

Re: June 2008 Screenshots

Looks like Thunar and Fluxbox to me...

Offline

#325 2008-06-24 11:08:44

JeremyTheWicked
Member
From: Poland
Registered: 2008-05-23
Posts: 193

Re: June 2008 Screenshots

@colbert: Hey, you're watching Firefly as well? The best tv series in history IMO.


arch(3) adj amused because you think you understand something better than other people ;P

Offline

Board footer

Powered by FluxBB