You are not logged in.

#126 2008-07-09 09:28:40

b4d
Member
From: Slovenia
Registered: 2008-07-06
Posts: 62
Website

Re: July 2008 Screenshots

archdave: After a long, long time, one KDE config that is really nice.

Offline

#127 2008-07-09 11:20:56

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

Re: July 2008 Screenshots

my current desktop clean & dirty (all info in shot):
archcleanhl8.th.png  07092008shotpr1.th.png

hope u like it wink

Offline

#128 2008-07-09 11:44:49

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

Re: July 2008 Screenshots

Nice... Can you post the pypanelrc?

Last edited by Gullible Jones (2008-07-09 11:45:56)

Offline

#129 2008-07-09 12:58:13

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

Re: July 2008 Screenshots

Gullible Jones wrote:

Nice... Can you post the pypanelrc?

of course, here is it:
cat .pypanelrc

#------------------------------------------------------------------------------
#
#                         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        = "0x262729"    # Panel background and tinting color
#BG_COLOR        = "0xFFEBBB"
TASK_COLOR      = "0x909090"    # Normal task name color 
FOCUSED_COLOR   = "0xffffff"    # Focused task name color
SHADED_COLOR    = "0x909090"    # Shaded task name color 
MINIMIZED_COLOR = "0x909090"    # Minimized task name color 
DESKTOP_COLOR   = "0x909090"    # Desktop name color
CLOCK_COLOR     = "0x000000"    # Clock text color
LINE_COLOR      = "0x757575"    # 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     = 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            = "OBHandel-9"

#------------------------------------------------------------------------------
# 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           = 200

#------------------------------------------------------------------------------
# Misc. Options: 1 = Enabled/Yes, 0 = Disabled/No
#------------------------------------------------------------------------------
ABOVE           = 1             # Panel is always above other apps
APPICONS        = 0             # 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   = ["desktop  1","desktop 2","desktop 3"]

#------------------------------------------------------------------------------
# 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         = 1             # Desktop name section
TASKS           = 2             # Task names section 
TRAY            = 5             # 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

#130 2008-07-09 18:25:22

avoulk
Member
From: Greece
Registered: 2007-08-28
Posts: 132
Website

Re: July 2008 Screenshots

hBd wrote:

Amazing wink
Here is my first post in this topic, a simple KDEmod, nothing really special..

attachment925.jpeg.xs.jpg

Offline

#131 2008-07-09 18:46:16

elstupidos
Arch Linux f@h Team Member
From: Santa Barbara, CA
Registered: 2008-01-14
Posts: 43

Re: July 2008 Screenshots

ss367.png.xs.jpg

old school awesome2.3

Offline

#132 2008-07-09 19:03:45

zyon
Member
From: Germany
Registered: 2007-06-26
Posts: 73

Re: July 2008 Screenshots

elstupidos wrote:

very nice movie!

Offline

#133 2008-07-09 19:06:46

arch0r
Member
From: From the Chron-o-John
Registered: 2008-05-13
Posts: 597

Re: July 2008 Screenshots

avoulk wrote:

Here is my first post in this topic, a simple KDEmod, nothing really special..
http://xs129.xs.to/xs129/08282/attachme … peg.xs.jpg

could u please share this kde theme / color scheme!?

Offline

#134 2008-07-09 19:25:54

Draje
Member
Registered: 2007-06-21
Posts: 102
Website

Re: July 2008 Screenshots

Desktop__Arch_Linux_by_Draje.png

[2008-07-18]

A nice KDEmod setup.

- QtCurve theme: [link]
- Color scheme: [link]
- Openbox theme: [link]

Last edited by Draje (2008-07-19 00:57:06)

Offline

#135 2008-07-09 19:29:37

avoulk
Member
From: Greece
Registered: 2007-08-28
Posts: 132
Website

Re: July 2008 Screenshots

arch0r wrote:
avoulk wrote:

Here is my first post in this topic, a simple KDEmod, nothing really special..
http://xs129.xs.to/xs129/08282/attachme … peg.xs.jpg

could u please share this kde theme / color scheme!?

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

Offline

#136 2008-07-09 20:12:02

arch0r
Member
From: From the Chron-o-John
Registered: 2008-05-13
Posts: 597

Re: July 2008 Screenshots

thx! smile

Offline

#137 2008-07-09 20:56:15

corleone
Member
Registered: 2007-10-17
Posts: 13

Re: July 2008 Screenshots

hBd wrote:

Where you found these fonts? It's awesome!

Offline

#138 2008-07-09 21:07:05

patogen
Member
Registered: 2008-05-11
Posts: 86

Re: July 2008 Screenshots

corleone wrote:
hBd wrote:

Where you found these fonts? It's awesome!

It says in his/her screenshot wink [/tip]


We met up with the aliens and guess what? They have no word for fluffy!

Offline

#139 2008-07-09 21:33:06

semperfiguy
Member
Registered: 2007-12-03
Posts: 224

Re: July 2008 Screenshots

elstupidos:  How do you get that bottom status bar? please share

Offline

#140 2008-07-09 21:38:14

iBertus
Member
From: Greenville, NC
Registered: 2004-11-04
Posts: 2,228

Re: July 2008 Screenshots

semperfiguy wrote:

elstupidos:  How do you get that bottom status bar? please share

Looks like just a second instance of awesome's built-in status bar w/ some scripted widgets.

Offline

#141 2008-07-09 21:39:16

iBertus
Member
From: Greenville, NC
Registered: 2004-11-04
Posts: 2,228

Re: July 2008 Screenshots

Please share the info for this shot! I see that you are using KDE apps, but I'm not sure if that's KDE or something else you are running.

Offline

#142 2008-07-09 21:59:30

jdhore
Member
From: NYC
Registered: 2007-08-01
Posts: 156

Re: July 2008 Screenshots

avoulk wrote:
hBd wrote:

Amazing wink
Here is my first post in this topic, a simple KDEmod, nothing really special..

http://xs129.xs.to/xs129/08282/attachme … peg.xs.jpg

heh...Could i get your wallpaper? That is awesome.

Offline

#143 2008-07-09 22:12:14

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

Re: July 2008 Screenshots

corleone wrote:
hBd wrote:

Where you found these fonts? It's awesome!

i dont know where i found, but i can send u if u want.

Offline

#144 2008-07-09 22:29:32

filam
Wiki Maintainer
From: Portland, ME
Registered: 2008-04-11
Posts: 158
Website

Re: July 2008 Screenshots

Drajel wrote:

Screenshot

Deviant Art Details wrote:

Submitted: February 3, 2007
Total: 7,384
Today: 71

Hmmm...? Don´t change your desktop much?

Offline

#145 2008-07-09 22:40:46

ramoneur
Member
Registered: 2007-06-04
Posts: 89

Re: July 2008 Screenshots

filam wrote:
Drajel wrote:

Screenshot

Deviant Art Details wrote:

Submitted: February 3, 2007
Total: 7,384
Today: 71

Hmmm...? Don´t change your desktop much?

hes just updated it wink it says in the info july -08 tongue


A w e s o m e
r
c
h

Offline

#146 2008-07-09 22:59:35

filam
Wiki Maintainer
From: Portland, ME
Registered: 2008-04-11
Posts: 158
Website

Re: July 2008 Screenshots

ramoneur wrote:
filam wrote:
Drajel wrote:

Screenshot

Deviant Art Details wrote:

Submitted: February 3, 2007
Total: 7,384
Today: 71

Hmmm...? Don´t change your desktop much?

hes just updated it wink it says in the info july -08 tongue

Haha. Ah! I forgot you could do that on DA. big_smile

Last edited by filam (2008-07-09 23:03:48)

Offline

#147 2008-07-10 01:14:20

semperfiguy
Member
Registered: 2007-12-03
Posts: 224

Re: July 2008 Screenshots

iBertus wrote:
semperfiguy wrote:

elstupidos:  How do you get that bottom status bar? please share

Looks like just a second instance of awesome's built-in status bar w/ some scripted widgets.

Please forgive my ignorance, but how do you do that? get the second bar I mean, once I get that I should be able to figure out the widgets from there.

Edit: *Smacks head*.. read the config file before posting.. figured out the second bar.. how about how do I get the graphs for cpu and mem levels?

Last edited by semperfiguy (2008-07-10 01:28:23)

Offline

#148 2008-07-10 01:25:01

corleone
Member
Registered: 2007-10-17
Posts: 13

Re: July 2008 Screenshots

@ patogen

On the screen, has only the font name.

@hBd

I found it. Thanks.

Offline

#149 2008-07-10 02:17:59

fwojciec
Member
Registered: 2007-05-20
Posts: 1,411

Re: July 2008 Screenshots

Artwiz fonts FTW!

july_clean-thumb.png   july_busy-thumb.png

and maybe xfce-panel is not so bad after all...

Offline

#150 2008-07-10 02:25:33

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

Re: July 2008 Screenshots

fwojciec wrote:

Artwiz fonts FTW!

http://www.loka.pl/outgoing/july_clean-thumb.png   http://www.loka.pl/outgoing/july_busy-thumb.png

and maybe xfce-panel is not so bad after all...

What's that at the top? Conky?

Can you post the config file?

Last edited by Gullible Jones (2008-07-10 02:27:46)

Offline

Board footer

Powered by FluxBB