You are not logged in.

#101 2009-09-05 14:04:36

myrkiada
Member
From: Norway
Registered: 2009-04-15
Posts: 74

Re: September 2009 Screenshots

opothehippo wrote:

Looks really good, ecspecially the color scheme.

Indeed! I want your Xdefaults.. please? smile

Edit: Err, forget it, I didn't see your link there. tongue Am I turning blind? O.o

Last edited by myrkiada (2009-09-05 14:06:32)


My Configs @ Github

Offline

#102 2009-09-05 15:40:08

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: September 2009 Screenshots

vMmFkMA tongue.png


This silver ladybug at line 28...

Offline

#103 2009-09-05 16:25:25

playdafunkimuzic
Member
Registered: 2008-10-25
Posts: 220

Re: September 2009 Screenshots

Bahumat wrote:

Can you please post your .Xdefaults and your pypanel rc? smile

Offline

#104 2009-09-05 17:36:45

firecat53
Member
From: Lake Stevens, WA, USA
Registered: 2007-05-14
Posts: 1,542
Website

Re: September 2009 Screenshots

2009-09-05-clean-thumb.png
Not much different this month. I added the colorstatus patch to highlight my Mail in the statusbar when I get a new email.
Dwm 5.6.1, patched with bottom stack, pango patch, bottom bar (not in use right now), tag switcher w/ left/right arrow, and a bunch a keyboard shortcuts.
2009-09-05-busy-thumb.png
Irssi (madcow theme), mutt, ncmpcpp-git.
2009-09-05-busy-gtk-thumb.png
Pcmanfm, firefox

Configs here.

Scott

Last edited by firecat53 (2009-09-05 17:38:59)

Offline

#105 2009-09-05 17:46:21

Bahumat
Member
From: Muelheim, Germany
Registered: 2008-07-21
Posts: 48

Re: September 2009 Screenshots

playdafunkimuzic wrote:
Bahumat wrote:

Can you please post your .Xdefaults and your pypanel rc? smile

Sure!

.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        = "0xd6d6d6"    # Panel background and tinting color
TASK_COLOR      = "0x000000"    # Normal task name color 
FOCUSED_COLOR   = "0x1826de"    # Focused task name color
SHADED_COLOR    = "0x808080"    # Shaded task name color 
MINIMIZED_COLOR = "0x808080"    # Minimized task name color 
DESKTOP_COLOR   = "0x000000"    # Desktop name color
CLOCK_COLOR     = "0x000000"    # Clock text color
LINE_COLOR      = "0x606060"    # 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         = 1024          # 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    = "%d.%m.%Y %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            = "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           = 50

#------------------------------------------------------------------------------
# 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       = 0             # 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         = 1             # Desktop name section
TASKS           = 2             # Task names section 
TRAY            = 3             # System tray section
CLOCK           = 4             # 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)

.Xdefaults

URxvt.saveLines: 10000
URxvt.scrollBar: false
URxvt.inheritPixmap: true
URxvt.shading: 75
URxvt.foreground: white
URxvt.background: black
URxvt.secondaryScroll: true
URxvt.font: xft:Bitstream Vera Sans Mono:pixelsize=12
URxvt.perl-ext-common: default,matcher
URxvt.urlLauncher: opera
URxvt.matcher.button: 1
URxvt.matcher.pattern.1: \\bwww\\.[\\w-]\\.[\\w./?&@#-]*[\\w/-]

Offline

#106 2009-09-05 17:57:37

opothehippo
Member
From: hella norcal bro
Registered: 2009-08-06
Posts: 89

Re: September 2009 Screenshots

Two more screens.

Tiling terminals (Midnight Commander, grep Manpage (colored), MoC, and script to demo colors):
screen18g.th.png
Floating terminal and mplayer:
screen19p.th.jpg

Xdefault colors is from Taters. (thanks!)


Arch x86_64 | XMonad

Offline

#107 2009-09-05 18:44:23

playdafunkimuzic
Member
Registered: 2008-10-25
Posts: 220

Re: September 2009 Screenshots

Bahumat wrote:
playdafunkimuzic wrote:
Bahumat wrote:

Can you please post your .Xdefaults and your pypanel rc? smile

Sure!

.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        = "0xd6d6d6"    # Panel background and tinting color
TASK_COLOR      = "0x000000"    # Normal task name color 
FOCUSED_COLOR   = "0x1826de"    # Focused task name color
SHADED_COLOR    = "0x808080"    # Shaded task name color 
MINIMIZED_COLOR = "0x808080"    # Minimized task name color 
DESKTOP_COLOR   = "0x000000"    # Desktop name color
CLOCK_COLOR     = "0x000000"    # Clock text color
LINE_COLOR      = "0x606060"    # 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         = 1024          # 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    = "%d.%m.%Y %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            = "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           = 50

#------------------------------------------------------------------------------
# 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       = 0             # 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         = 1             # Desktop name section
TASKS           = 2             # Task names section 
TRAY            = 3             # System tray section
CLOCK           = 4             # 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)

.Xdefaults

URxvt.saveLines: 10000
URxvt.scrollBar: false
URxvt.inheritPixmap: true
URxvt.shading: 75
URxvt.foreground: white
URxvt.background: black
URxvt.secondaryScroll: true
URxvt.font: xft:Bitstream Vera Sans Mono:pixelsize=12
URxvt.perl-ext-common: default,matcher
URxvt.urlLauncher: opera
URxvt.matcher.button: 1
URxvt.matcher.pattern.1: \\bwww\\.[\\w-]\\.[\\w./?&@#-]*[\\w/-]

Thanks so much..I've just started using urxvt. I'm trying to get the title of the terminal to show current command/current directory. Is that located in the shell config? If so, can you possibly post that too..that would be awesome smile

Offline

#108 2009-09-05 18:50:30

Daisuke_Aramaki
Member
From: ++49/711
Registered: 2008-10-06
Posts: 651
Website

Re: September 2009 Screenshots

opothehippo wrote:

Two more screens.

Tiling terminals (Midnight Commander, grep Manpage (colored), MoC, and script to demo colors):
http://img214.imageshack.us/img214/4195 … 18g.th.png
Floating terminal and mplayer:
http://img210.imageshack.us/img210/4102 … 19p.th.jpg

Xdefault colors is from Taters. (thanks!)

Nice. Those colors are from my good friend Artur actually wink It's been available on my github for a long time!

Last edited by Daisuke_Aramaki (2009-09-05 18:50:56)


"You know what I found? Right in the kernel, in the heart of the operating system, I found a developer's comment that said, `Does this belong here?`" -- Simon Lok about Linux kernel in 2005
Reflections on the Strange and the not so Strange
http://skinwalker.wordpress.com

Offline

#109 2009-09-05 19:00:51

opothehippo
Member
From: hella norcal bro
Registered: 2009-08-06
Posts: 89

Re: September 2009 Screenshots

Daisuke_Aramaki wrote:
opothehippo wrote:

Two more screens.

Tiling terminals (Midnight Commander, grep Manpage (colored), MoC, and script to demo colors):
http://img214.imageshack.us/img214/4195 … 18g.th.png
Floating terminal and mplayer:
http://img210.imageshack.us/img210/4102 … 19p.th.jpg

Xdefault colors is from Taters. (thanks!)

Nice. Those colors are from my good friend Artur actually wink It's been available on my github for a long time!

Well I think they look great, so thanks to Artur. Also thanks for your post on colorwrapper, and colored manpages.


Arch x86_64 | XMonad

Offline

#110 2009-09-05 19:18:08

electricshoes
Member
From: Oregon
Registered: 2008-10-07
Posts: 20

Re: September 2009 Screenshots

opothehippo wrote:

Two more screens.

Tiling terminals (Midnight Commander, grep Manpage (colored), MoC, and script to demo colors):
http://img214.imageshack.us/img214/4195 … 18g.th.png
Floating terminal and mplayer:
http://img210.imageshack.us/img210/4102 … 19p.th.jpg

Xdefault colors is from Taters. (thanks!)

Is that xmonad? If so can I get your xmonad.hs?

Offline

#111 2009-09-05 19:20:05

SpeedVin
Member
From: Poland
Registered: 2009-04-29
Posts: 955

Re: September 2009 Screenshots

electricshoes wrote:
opothehippo wrote:

Two more screens.

Tiling terminals (Midnight Commander, grep Manpage (colored), MoC, and script to demo colors):
http://img214.imageshack.us/img214/4195 … 18g.th.png
Floating terminal and mplayer:
http://img210.imageshack.us/img210/4102 … 19p.th.jpg

Xdefault colors is from Taters. (thanks!)

Is that xmonad? If so can I get your xmonad.hs?

Yes it is wink


Shell Scripter | C/C++/Python/Java Coder | ZSH

Offline

#112 2009-09-05 19:46:37

unexist
Member
From: Germany
Registered: 2008-05-13
Posts: 300
Website

Re: September 2009 Screenshots

Another devel shot of subtle. smile

xephyrpng_med_rect

Offline

#113 2009-09-05 20:17:18

Taters
Member
From: Ohio
Registered: 2008-08-22
Posts: 53

Re: September 2009 Screenshots

electricshoes wrote:
opothehippo wrote:

Two more screens.

Tiling terminals (Midnight Commander, grep Manpage (colored), MoC, and script to demo colors):
http://img214.imageshack.us/img214/4195 … 18g.th.png
Floating terminal and mplayer:
http://img210.imageshack.us/img210/4102 … 19p.th.jpg

Xdefault colors is from Taters. (thanks!)

Is that xmonad? If so can I get your xmonad.hs?

I'm having some issues with it right now (window tagging doesn't work, among other things) but I'll post it once I work it out.

Daisuke_Aramaki wrote:

Nice. Those colors are from my good friend Artur actually wink It's been available on my github for a long time!

I was going to say that they didn't look too familiar tongue

playdafunkimuzic wrote:

Thanks so much..I've just started using urxvt. I'm trying to get the title of the terminal to show current command/current directory. Is that located in the shell config? If so, can you possibly post that too..that would be awesome smile

in your .bashrc, put:

# Titlebar name set
case "$TERM" in
    xterm*|rxvt*)
        PROMPT_COMMAND='echo -ne "\0033]0;${USER}  ${PWD/$HOME/~}\007"'
        ;;
    *)
        ;;
esac

Last edited by Taters (2009-09-05 20:21:24)

Offline

#114 2009-09-05 20:57:21

playdafunkimuzic
Member
Registered: 2008-10-25
Posts: 220

Re: September 2009 Screenshots

playdafunkimuzic wrote:

Thanks so much..I've just started using urxvt. I'm trying to get the title of the terminal to show current command/current directory. Is that located in the shell config? If so, can you possibly post that too..that would be awesome smile

in your .bashrc, put:

# Titlebar name set
case "$TERM" in
    xterm*|rxvt*)
        PROMPT_COMMAND='echo -ne "\0033]0;${USER}  ${PWD/$HOME/~}\007"'
        ;;
    *)
        ;;
esac

Hi, Thanks. I'm using zsh. That didn't seem to do the trick.

Offline

#115 2009-09-05 21:01:00

jwcxz
Member
Registered: 2008-09-23
Posts: 239
Website

Re: September 2009 Screenshots

yettenet wrote:
jwcxz wrote:

Not much changed since last month.  My conky config now reports the temps of my individual cores now.

http://jwcxz.com/pictures/desktop/09-09/busy_t.png

http://jwcxz.com/pictures/desktop/09-09/clean_t.png

I also installed AutoDesk Inventor recently and even with software rendering, it's pretty fast.  I should have installed the 32-bit version to get real 3D acceleration.
http://jwcxz.com/pictures/desktop/09-09/inventor_t.png

I'm already getting bored of my wallpaper...  Maybe I'll make a new one for next month.

Could you possibly share your .Xdefaults?

On this computer, I run KDE, so I don't use them.   The console font is ProggyTiny (http://proggyfonts.com/), the Vim colorscheme is rdark (256 color version) with a bunch of modifications I made to make things look nicer:

hi SpellBad ctermbg=88 ctermfg=203
hi NonText ctermbg=none
hi Comment ctermfg=234 ctermbg=252
hi Todo ctermfg=160
hi Pmenu ctermbg=237
hi Visual ctermbg=23
hi VertSplit ctermfg=234 ctermbg=234
hi StatusLineNC ctermfg=247 ctermbg=234
hi Visual ctermfg=112 ctermbg=234
hi Folded ctermfg=70 ctermbg=234
hi FoldColumn ctermfg=70 ctermbg=234

I still have more work to do.  rdark is really beautiful, but I want support for more things.  smile


-- jwc
http://jwcxz.com/ | blog
dotman - manage your dotfiles across multiple environments
icsy - an alarm for powernappers

Offline

#116 2009-09-05 21:05:47

Daisuke_Aramaki
Member
From: ++49/711
Registered: 2008-10-06
Posts: 651
Website

Re: September 2009 Screenshots

playdafunkimuzic wrote:

Hi, Thanks. I'm using zsh. That didn't seem to do the trick.

Add this. This is from my .zshrc

 
## display fancy terminal title
case $TERM in
  *xterm*|(u)rxvt|(u|dt|k|E)term)
  ## display user@host and full dir in *term title
  precmd () {
    print -Pn "\033]0;%n@%m: %~ (%l)\007"
    #print -Pn "\033]0;%n@%m%# %~ %l %w :: %T\a" ## or use this
    }
  ## display user@host and name of current process in *term title
  preexec () {
    print -Pn "\033]0;%n@%m <$1> %~ (%l)\007"
    #print -Pn "\033]0;%n@%m%# <$1> %~ %l %w :: %T\a" ## or use this
    }
  ;;
esac

"You know what I found? Right in the kernel, in the heart of the operating system, I found a developer's comment that said, `Does this belong here?`" -- Simon Lok about Linux kernel in 2005
Reflections on the Strange and the not so Strange
http://skinwalker.wordpress.com

Offline

#117 2009-09-05 23:57:55

Daisuke_Aramaki
Member
From: ++49/711
Registered: 2008-10-06
Posts: 651
Website

Re: September 2009 Screenshots

OpenBSD+Window Maker

vMmFqbw


"You know what I found? Right in the kernel, in the heart of the operating system, I found a developer's comment that said, `Does this belong here?`" -- Simon Lok about Linux kernel in 2005
Reflections on the Strange and the not so Strange
http://skinwalker.wordpress.com

Offline

#118 2009-09-06 00:46:10

Jesus
Member
From: Greece
Registered: 2009-09-01
Posts: 10

Re: September 2009 Screenshots

Hi, this is Gentoo,
Openbox with Conky, Sonata/mpd, tint2

Clean:
2nltro0.jpg

Dirty:
2wmdxjp.jpg

I really like how you guys tend to try wms like dwm, wmii etc
I'm looking forward to trying out scrotwm or awesome some day soon.
I tried xmonad and felt nice. When I find some time I'll try the others ;-)


I shall shave you ~ dotfiles

Offline

#119 2009-09-06 01:54:26

pillz
Member
Registered: 2009-08-20
Posts: 58

Re: September 2009 Screenshots

desktopseptcleanthumb.png


desktopseptdirtythumb.png

Last edited by pillz (2009-09-06 01:55:23)

Offline

#120 2009-09-06 03:23:13

Mountainjew
Member
From: Ireland
Registered: 2008-08-24
Posts: 405

Re: September 2009 Screenshots

NXJBal.jpg

Offline

#121 2009-09-06 05:35:17

opothehippo
Member
From: hella norcal bro
Registered: 2009-08-06
Posts: 89

Re: September 2009 Screenshots

electricshoes wrote:
opothehippo wrote:

Two more screens.

Tiling terminals (Midnight Commander, grep Manpage (colored), MoC, and script to demo colors):
http://img214.imageshack.us/img214/4195 … 18g.th.png
Floating terminal and mplayer:
http://img210.imageshack.us/img210/4102 … 19p.th.jpg

Xdefault colors is from Taters. (thanks!)

Is that xmonad? If so can I get your xmonad.hs?

Sure.

--imports
import XMonad.Util.Run
import XMonad.Hooks.ManageDocks

--layouts
import XMonad.Layout.NoBorders
import XMonad.Layout.Tabbed
import XMonad.Layout.Spiral

main = do
    xmobar <- spawnPipe "xmobar"
    xmonad $ defaultConfig
        { terminal = "urxvt"
        , workspaces = workspaces'
        , borderWidth = 1
        , normalBorderColor = "#161616"
        , focusedBorderColor = "#43a2a6"
        , logHook = dynamicLogWithPP $ xmobarPP { ppOutput = hPutStrLn xmobar }
        , manageHook = manageDocks <+> manageHook defaultConfig
        , layoutHook = layoutHook'
        }

--workspace names (currently default)
workspaces' :: [WorkspaceId]
workspaces' = ["1-term", "2-web", "3-talk", "4-code", "5-gui", "6-else", "7-else", "8-else", "9-else"]

--layout configurations
layoutHook' = avoidStruts $ smartBorders $ layoutHook defaultConfig ||| simpleTabbed ||| spiral (6/7)

Its rather simple, but I like it.

On a side note, new wallpaper.

screen6000.th.jpg


Arch x86_64 | XMonad

Offline

#122 2009-09-06 09:23:33

Dead Code
Member
Registered: 2009-01-18
Posts: 227

Re: September 2009 Screenshots

snapshot.jpg snapshot1.jpg

Theme: Glassified
Color Scheme: Zion
Wallpaper: Dew Transparent from Zwopper (dA.com)

Offline

#123 2009-09-06 09:26:36

SpeedVin
Member
From: Poland
Registered: 2009-04-29
Posts: 955

Re: September 2009 Screenshots

Dead Code wrote:

http://h.imagehost.org/t/0878/snapshot.jpg http://h.imagehost.org/t/0718/snapshot1.jpg

Theme: Glassified
Color Scheme: Zion
Wallpaper: Dew Transparent from Zwopper (dA.com)

Hello.
You got so nice wallpapers in your wallpapers dir could you make a package and upload it somewhere?
Thanks


Shell Scripter | C/C++/Python/Java Coder | ZSH

Offline

#124 2009-09-06 11:50:40

greenfish
Member
From: eating fish in /dev/null
Registered: 2008-08-30
Posts: 229

Re: September 2009 Screenshots

SpeedVin wrote:
Dead Code wrote:

http://h.imagehost.org/t/0878/snapshot.jpg http://h.imagehost.org/t/0718/snapshot1.jpg

Theme: Glassified
Color Scheme: Zion
Wallpaper: Dew Transparent from Zwopper (dA.com)

Hello.
You got so nice wallpapers in your wallpapers dir could you make a package and upload it somewhere?
Thanks

I belive most of them are from Zwopper http://zwopper.deviantart.com/


ARCH64 archSKYNET server AMD  Phenom(tm) II X2 550 HDD 6TB Ram 8GB
Hobbies: Running, Pistol Marksmanship, Classic Music

Offline

#125 2009-09-06 11:58:27

Dead Code
Member
Registered: 2009-01-18
Posts: 227

Re: September 2009 Screenshots

SpeedVin wrote:

Hello.
You got so nice wallpapers in your wallpapers dir could you make a package and upload it somewhere?
Thanks

yea.. and http://zixpk.com and http://interfacelift.com are my other sources wink

Offline

Board footer

Powered by FluxBB