You are not logged in.

#76 2007-10-08 11:00:22

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

Re: October 2007 Screenshots

I slightly changed my .Xdefaults and .screenrc since posting the picture, however, here it is:

~/.screenrc | the mpd part has been copied from somebody else in this forum smile

msgwait 2 # 1 second messages
hardstatus alwayslastline
backtick 1 5 5 /home/derp/.scripts/screen-mpd
hardstatus string '%{gk}[%{G}%H%{g}][%= %{wk}%?%-Lw%?%{=b kR}(%{W}%n*%f %t%?(%u)%?%{=b kR})%{= kw}%?%+Lw%?%?%= %{g}]%{g}[%{r}%1`%{g}][%{b}%m/%d %c:%s%{g}]%{W}'

/home/derp/.scripts/screen-mpd | for the mpd part of .screenrc

#!/bin/sh

# ~/bin/nowplaying

is_playing_music=`mpc | head -2 | tail -1 | grep playing`
if [[ -n "$is_playing_music" ]]; then
  mpc --format "~ %artist% @ %title% ~" | head -1
else
  hostname
fi

~/.Xdefaults

*foreground:     rgb:dd/dd/dd
*background:     rgb:22/22/22
!black
*color0:         rgb:19/19/19
*color8:         rgb:25/25/25
!red
*color1:         rgb:80/32/32
*color9:         rgb:9e/18/28
!green
*color2:     rgb:5b/76/2f
*color10:     rgb:89/b8/3f
!brown/yellow
!*color11:        rgb:b6/aa/58
*color3:     rgb:aa/99/43
*coror11:     rgb:c4/a0/00
!blue
*color4:         rgb:32/4c/80
*color12:        rgb:20/4a/87
!magenta
!*color5:         rgb:70/6c/9a
!*color13:        rgb:82/6a/b1
*color5:     rgb:5c/35/66
*color13:     rgb:82/6a/ab
!cyan
!*color6:         rgb:92/b1/9e
!*color14:        rgb:a1/cd/cd
!*color6:    rgb:52/91/78
*color6:     rgb:51/8d/a0
*color14:     rgb:51/7d/8a
!white
!*color7:         rgb:ff/ff/ff
!*color15:        rgb:dd/dd/dd
*color7:    gray70
*color15:    gray80


!URxvt*font:    xft:fixed:pixelsize=12
URxvt*font:    xft:clean:pixelsize=12
!URxvt*font:    -misc-fixed-*-*-normal-*-10-*-*-*-*-*-iso8859-2

#URxvt.perl-ext-common:    tabbed,mark-urls
URxvt.perl-ext-common:    default,tabbed,matcher
URxvt*matcher.button:    1
URxvt.tabbed.tabbar-fg:    2
URxvt.tabbed.tabbar-bg:    gray5
URxvt.tabbed.tab-fg:    12
URxvt.tabbed.tab-bg:    gray5

URxvt.remote-selection.store: rsh ruth 'cat >/tmp/distributed-selection'
URxvt.remote-selection.fetch: rsh ruth 'cat /tmp/distributed-selection'

URxvt*depth:        32
URxvt*geometry:        90x24
URxvt*internalBorder:    0
URxvt*externalBorder:    0
#URxvt*borderLess:    True
URxvt*dynamicColors:    on
URxvt*background:    gray5
#URxvt*foreground:    gray80
#URxvt*foreground:    7
URxvt*foreground:    7
URxvt*fading:        20
URxvt*loginShell:    True
URxvt*scrollBar:    False
URxvt*saveLines:    1000
URxvt*urlLauncher:    /usr/bin/firefox

#urxvt*tintColor:    0
#urxvt*shading:        60
#urxvt*inheritPixmap:    True

#XTerm*utf8:        1
#XTerm*eightBitInput:    True
#XTerm*metaSendsEscape:    True

~/.config/openbox/scripts/sysinfo_v01-by_derp.script
make sure to chmod +x the file!

######## This is a script made
######## by 'derp'.
########
######## SysInfo script for OpenBox
######## v0.1
########
######## The author does not take
######## any responsibility for
######## what it might do to your
######## computer, though it's
######## improbable to do any harm.
########
######## You may share the script with
######## everyone and modify it for your
######## liking, as long as you
######## GIVE CREDIT.
########
######## To add it to Openbox, copy it to
######## your Openbox/scripts folder, which usually is at
######## ~/.config/openbox/scripts
########
######## edit your menu.xml file, which usually is at
######## ~/.config/openbox/menu.xml
######## and add the following line (in case you have the usual paths - if not, edit the path as needed):
########
########<menu execute="~/.config/openbox/scripts/sysinfo_v01-by_derp.script" id="sysinfo-menu" label="SysInfo"/>
########
######## Below you will find the settings
######## (the script still needs to be tested)  

########  settings

MountPoint1=$(echo /dev/sda3)
MountPoint2=$(echo /dev/sda4)
NetworkDevice1=$(echo eth0)
NetworkDevice2=$(echo eth1)  #Uncomment some lines to make it work!

######## /settings



User=$(whoami)
Host=$(uname -n)
System=$(uname -s)
Release=$(uname -r)
Arch=$(uname -m)

SizeMountPoint1=$(df -HlT | grep "$MountPoint1")
SizeMountPoint2=$(df -HlT | grep "$MountPoint2")

NetDev1ip=$(/sbin/ifconfig "$NetworkDevice1" | grep "inet addr:" | sed "s/.*inet addr://" | sed "s/Bcast.*//")
NetDev1down=$(/sbin/ifconfig "$NetworkDevice1" | grep bytes | sed 's/.*RX bytes:[0-9]* (//'  | sed 's/iB).*TX.*//' | sed 's/b).*TX.*//' | sed 's/).*TX.*//')
NetDev1up=$(/sbin/ifconfig "$NetworkDevice1" | grep bytes | sed 's/.*TX bytes:[0-9]* (//' | sed 's/iB)//' |sed 's/b).*//' | sed 's/).*//')

NetDev2ip=$(/sbin/ifconfig "$NetworkDevice1" | grep "inet addr:" | sed "s/.*inet addr://" | sed "s/Bcast.*//")
NetDev2down=$(/sbin/ifconfig "$NetworkDevice1" | grep bytes | sed 's/.*RX bytes:[0-9]* (//'  | sed 's/iB).*TX.*//' | sed 's/b).*TX.*//' | sed 's/).*TX.*//')
NetDev2up=$(/sbin/ifconfig "$NetworkDevice1" | grep bytes | sed 's/.*TX bytes:[0-9]* (//' | sed 's/iB)//' |sed 's/b).*//' | sed 's/).*//')

DateDate=$(date '+Date ~ %Y.%m.%d. (%a)')
DateWeek=$(date '+Week ~ %W')
 DateDay=$(date '+ Day ~ %j')
DateTime=$(date '+Time ~ %H:%M [%Z]')
UpTime=$(uptime | sed 's/.*up //' | sed 's/[0-9]* us.*//' | sed 's/ day, /d/' | sed 's/ days, /d /' | sed 's/:/h /' | sed 's/ min//'|  sed 's/,/m/' | sed 's/  / /')

MemTotal=$(echo "scale = 2; ("$(cat /proc/meminfo | grep MemTotal: | awk '{print $2}' | sed 's/k//')" /1024)" | bc)
 MemFree=$(echo "scale = 2; ("$(cat /proc/meminfo | grep MemFree: | awk '{print $2}' | sed 's/k//')" /1024) + ("$(cat /proc/meminfo | grep grep -m 1 Cached: | awk '{print $2}' | sed 's/k//')" /1024)" | bc)
 MemUsed=$(echo "scale = 2; ("$(cat /proc/meminfo | grep MemTotal: | awk '{print $2}' | sed 's/k//')" /1024) - (("$(cat /proc/meminfo | grep MemFree: | awk '{print $2}' | sed 's/k//')" /1024) + ("$(cat /proc/meminfo | grep -m 1 Cached: | awk '{print $2}' | sed 's/k//')" /1024))" | bc)

SwpTotal=$(echo "scale = 2; ("$(cat /proc/meminfo | grep SwapTotal: | awk '{print $2}' | sed 's/k//')" /1024)" | bc)
 SwpFree=$(echo "scale = 2; ("$(cat /proc/meminfo | grep SwapFree: | awk '{print $2}' | sed 's/k//')" /1024)" | bc)
 SwpUsed=$(echo "scale = 2; ("$(cat /proc/meminfo | grep SwapTotal: | awk '{print $2}' | sed 's/k//')" /1024) - ("$(cat /proc/meminfo | grep SwapFree: | awk '{print $2}' | sed 's/k//')" /1024)" | bc)

MemUsedPercent=$(echo "scale = 2; (("$(cat /proc/meminfo | grep MemTotal: | awk '{print $2}' | sed 's/k//')" /1024) - (("$(cat /proc/meminfo | grep MemFree: | awk '{print $2}' | sed 's/k//')" /1024) + ("$(cat /proc/meminfo | grep -m 1 Cached: | awk '{print $2}' | sed 's/k//')" /1024))) / ("$(cat /proc/meminfo | grep MemTotal: | awk '{print $2}' | sed 's/k//')" /1024) *100" | bc)
SwpUsedPercent=$(echo "scale = 2; (("$(cat /proc/meminfo | grep SwapTotal: | awk '{print $2}' | sed 's/k//')" /1024) - ("$(cat /proc/meminfo | grep SwapFree: | awk '{print $2}' | sed 's/k//')" /1024)) / ("$(cat /proc/meminfo | grep SwapTotal: | awk '{print $2}' | sed 's/k//')" /1024) *100" | bc)

CPUmodel=$(cat /proc/cpuinfo | grep "model name" | sed 's/.*: //')
CPUfreq=$(cat /proc/cpuinfo | grep -m 1 "cpu MHz" | sed 's/.*: //')
CPUcache=$(cat /proc/cpuinfo | grep -m 1 "cache size" | sed 's/.*: //')


echo "<openbox_pipe_menu>"
echo "<separator label=\"$User @ $Host \"/>"
echo "<item label=\"$System $Release $Arch\"/>"

echo "<separator label = \"Filesystem ~~ Type ~~ Total ~ Used ~ Free ~ % ~ Mount   \"/>"
echo "<item label=\"$SizeMountPoint1\"/>"
echo "<item label=\"$SizeMountPoint2\"/>"

echo "<separator label=\"CPU ~ RAM ~ Swap | Used/Total     \"/>"
echo "<item label=\"RAM used: $MemUsed MiB/$MemTotal MiB ~ $MemUsedPercent%\"/>"
echo "<item label=\"Swp used: $SwpUsed MiB/$SwpTotal MiB ~ $SwpUsedPercent%\"/>"
echo "<item label=\"CPU ~ $CPUmodel\"/>"
echo "<item label=\"CPU @ $CPUfreq MHz  ~  CPU Cache: $CPUcache\"/>"

echo "<separator label = \"Network ~ "$NetworkDevice1"  \"/>"
echo "<item label=\""$NetworkDevice1" ~         ip: $NetDev1ip\"/>"
echo "<item label=\""$NetworkDevice1" ~ downloaded: "$NetDev1down"iB\"/>"
echo "<item label=\""$NetworkDevice1" ~   uploaded: "$NetDev1up"iB\"/>"

#echo "<separator label = \"Network ~ "$NetworkDevice2"  \"/>"
#echo "<item label=\""$NetworkDevice1" ~         ip: $NetDev2ip\"/>"
#echo "<item label=\""$NetworkDevice1" ~ downloaded: "$NetDev2down"iB\"/>"
#echo "<item label=\""$NetworkDevice1" ~   uploaded: "$NetDev2up"iB\"/>"

echo "<separator label = \"Date ~ Time\"/>"
echo "<item label=\"$DateDate\"/>"
echo "<item label=\"$DateWeek\"/>"
echo "<item label=\"$DateDay\"/>"
echo "<item label=\"$DateTime\"/>"
echo "<item label=\"  Up ~ $UpTime\"/>"

echo "</openbox_pipe_menu>"

Last edited by yettenet (2012-07-23 14:40:46)

Offline

#77 2007-10-08 12:24:09

erikl
Member
From: Mars
Registered: 2006-07-15
Posts: 128

Re: October 2007 Screenshots

upsidaisium wrote:
erikl wrote:
upsidaisium wrote:

haven't really changed much, except the screen status line and the background (which you can't see...)

http://xs320.xs.to/xs320/07406/octscreen1-thumb.png

Mind sharing your .screenrc?

don't mind at all smile

startup_message off
altscreen on

hardstatus alwayslastline "%{kY} %{+u kY}%n %t%{-u kY} %=[ %W ] "

bind h screen -t htop htop
bind f screen -t im finch
bind i screen -t irc irssi -c Freenode
bind r screen -t torrents rtorrent
bind v screen -t vim vim
bind m screen -t tunes ncmpc
bind b screen -t hnb hnb
bind s screen -t snownews snownews

screen -t zsh 0
screen -t tunes 1 ncmpc

i think the hardstatus string could be simplified a bit.. maybe..  but i haven't really bothered to think it through.

Thank you!

Offline

#78 2007-10-08 14:51:31

quarks
Member
From: Netherlands
Registered: 2007-05-14
Posts: 66

Re: October 2007 Screenshots

yettenet wrote:

I slightly changed my .Xdefaults and .screenrc since posting the picture, however, here it is:

~/.screenrc | the mpd part has been copied from somebody else in this forum smile

msgwait 2 # 1 second messages
hardstatus alwayslastline
backtick 1 5 5 /home/yettenet/.scripts/screen-mpd
hardstatus string '%{gk}[%{G}%H%{g}][%= %{wk}%?%-Lw%?%{=b kR}(%{W}%n*%f %t%?(%u)%?%{=b kR})%{= kw}%?%+Lw%?%?%= %{g}]%{g}[%{r}%1`%{g}][%{b}%m/%d %c:%s%{g}]%{W}'

/home/yettenet/.scripts/screen-mpd | for the mpd part of .screenrc

#!/bin/sh

# ~/bin/nowplaying

is_playing_music=`mpc | head -2 | tail -1 | grep playing`
if [[ -n "$is_playing_music" ]]; then
  mpc --format "~ %artist% @ %title% ~" | head -1
else
  hostname
fi

~/.Xdefaults

*foreground:     rgb:dd/dd/dd
*background:     rgb:22/22/22
!black
*color0:         rgb:19/19/19
*color8:         rgb:25/25/25
!red
*color1:         rgb:80/32/32
*color9:         rgb:9e/18/28
!green
*color2:     rgb:5b/76/2f
*color10:     rgb:89/b8/3f
!brown/yellow
!*color11:        rgb:b6/aa/58
*color3:     rgb:aa/99/43
*coror11:     rgb:c4/a0/00
!blue
*color4:         rgb:32/4c/80
*color12:        rgb:20/4a/87
!magenta
!*color5:         rgb:70/6c/9a
!*color13:        rgb:82/6a/b1
*color5:     rgb:5c/35/66
*color13:     rgb:82/6a/ab
!cyan
!*color6:         rgb:92/b1/9e
!*color14:        rgb:a1/cd/cd
!*color6:    rgb:52/91/78
*color6:     rgb:51/8d/a0
*color14:     rgb:51/7d/8a
!white
!*color7:         rgb:ff/ff/ff
!*color15:        rgb:dd/dd/dd
*color7:    gray70
*color15:    gray80


!URxvt*font:    xft:fixed:pixelsize=12
URxvt*font:    xft:clean:pixelsize=12
!URxvt*font:    -misc-fixed-*-*-normal-*-10-*-*-*-*-*-iso8859-2

#URxvt.perl-ext-common:    tabbed,mark-urls
URxvt.perl-ext-common:    default,tabbed,matcher
URxvt*matcher.button:    1
URxvt.tabbed.tabbar-fg:    2
URxvt.tabbed.tabbar-bg:    gray5
URxvt.tabbed.tab-fg:    12
URxvt.tabbed.tab-bg:    gray5

URxvt.remote-selection.store: rsh ruth 'cat >/tmp/distributed-selection'
URxvt.remote-selection.fetch: rsh ruth 'cat /tmp/distributed-selection'

URxvt*depth:        32
URxvt*geometry:        90x24
URxvt*internalBorder:    0
URxvt*externalBorder:    0
#URxvt*borderLess:    True
URxvt*dynamicColors:    on
URxvt*background:    gray5
#URxvt*foreground:    gray80
#URxvt*foreground:    7
URxvt*foreground:    7
URxvt*fading:        20
URxvt*loginShell:    True
URxvt*scrollBar:    False
URxvt*saveLines:    1000
URxvt*urlLauncher:    /usr/bin/firefox

#urxvt*tintColor:    0
#urxvt*shading:        60
#urxvt*inheritPixmap:    True

#XTerm*utf8:        1
#XTerm*eightBitInput:    True
#XTerm*metaSendsEscape:    True

~/.config/openbox/scripts/sysinfo_v01-by_yettenet.script
make sure to chmod +x the file!

######## This is a script made
######## by 'yettenet'.
########
######## SysInfo script for OpenBox
######## v0.1
########
######## The author does not take
######## any responsibility for
######## what it might do to your
######## computer, though it's
######## improbable to do any harm.
########
######## You may share the script with
######## everyone and modify it for your
######## liking, as long as you
######## GIVE CREDIT.
########
######## To add it to Openbox, copy it to
######## your Openbox/scripts folder, which usually is at
######## ~/.config/openbox/scripts
########
######## edit your menu.xml file, which usually is at
######## ~/.config/openbox/menu.xml
######## and add the following line (in case you have the usual paths - if not, edit the path as needed):
########
########<menu execute="~/.config/openbox/scripts/sysinfo_v01-by_yettenet.script" id="sysinfo-menu" label="SysInfo"/>
########
######## Below you will find the settings
######## (the script still needs to be tested)  

########  settings

MountPoint1=$(echo /dev/sda3)
MountPoint2=$(echo /dev/sda4)
NetworkDevice1=$(echo eth0)
NetworkDevice2=$(echo eth1)  #Uncomment some lines to make it work!

######## /settings



User=$(whoami)
Host=$(uname -n)
System=$(uname -s)
Release=$(uname -r)
Arch=$(uname -m)

SizeMountPoint1=$(df -HlT | grep "$MountPoint1")
SizeMountPoint2=$(df -HlT | grep "$MountPoint2")

NetDev1ip=$(/sbin/ifconfig "$NetworkDevice1" | grep "inet addr:" | sed "s/.*inet addr://" | sed "s/Bcast.*//")
NetDev1down=$(/sbin/ifconfig "$NetworkDevice1" | grep bytes | sed 's/.*RX bytes:[0-9]* (//'  | sed 's/iB).*TX.*//' | sed 's/b).*TX.*//' | sed 's/).*TX.*//')
NetDev1up=$(/sbin/ifconfig "$NetworkDevice1" | grep bytes | sed 's/.*TX bytes:[0-9]* (//' | sed 's/iB)//' |sed 's/b).*//' | sed 's/).*//')

NetDev2ip=$(/sbin/ifconfig "$NetworkDevice1" | grep "inet addr:" | sed "s/.*inet addr://" | sed "s/Bcast.*//")
NetDev2down=$(/sbin/ifconfig "$NetworkDevice1" | grep bytes | sed 's/.*RX bytes:[0-9]* (//'  | sed 's/iB).*TX.*//' | sed 's/b).*TX.*//' | sed 's/).*TX.*//')
NetDev2up=$(/sbin/ifconfig "$NetworkDevice1" | grep bytes | sed 's/.*TX bytes:[0-9]* (//' | sed 's/iB)//' |sed 's/b).*//' | sed 's/).*//')

DateDate=$(date '+Date ~ %Y.%m.%d. (%a)')
DateWeek=$(date '+Week ~ %W')
 DateDay=$(date '+ Day ~ %j')
DateTime=$(date '+Time ~ %H:%M [%Z]')
UpTime=$(uptime | sed 's/.*up //' | sed 's/[0-9]* us.*//' | sed 's/ day, /d/' | sed 's/ days, /d /' | sed 's/:/h /' | sed 's/ min//'|  sed 's/,/m/' | sed 's/  / /')

MemTotal=$(echo "scale = 2; ("$(cat /proc/meminfo | grep MemTotal: | awk '{print $2}' | sed 's/k//')" /1024)" | bc)
 MemFree=$(echo "scale = 2; ("$(cat /proc/meminfo | grep MemFree: | awk '{print $2}' | sed 's/k//')" /1024) + ("$(cat /proc/meminfo | grep grep -m 1 Cached: | awk '{print $2}' | sed 's/k//')" /1024)" | bc)
 MemUsed=$(echo "scale = 2; ("$(cat /proc/meminfo | grep MemTotal: | awk '{print $2}' | sed 's/k//')" /1024) - (("$(cat /proc/meminfo | grep MemFree: | awk '{print $2}' | sed 's/k//')" /1024) + ("$(cat /proc/meminfo | grep -m 1 Cached: | awk '{print $2}' | sed 's/k//')" /1024))" | bc)

SwpTotal=$(echo "scale = 2; ("$(cat /proc/meminfo | grep SwapTotal: | awk '{print $2}' | sed 's/k//')" /1024)" | bc)
 SwpFree=$(echo "scale = 2; ("$(cat /proc/meminfo | grep SwapFree: | awk '{print $2}' | sed 's/k//')" /1024)" | bc)
 SwpUsed=$(echo "scale = 2; ("$(cat /proc/meminfo | grep SwapTotal: | awk '{print $2}' | sed 's/k//')" /1024) - ("$(cat /proc/meminfo | grep SwapFree: | awk '{print $2}' | sed 's/k//')" /1024)" | bc)

MemUsedPercent=$(echo "scale = 2; (("$(cat /proc/meminfo | grep MemTotal: | awk '{print $2}' | sed 's/k//')" /1024) - (("$(cat /proc/meminfo | grep MemFree: | awk '{print $2}' | sed 's/k//')" /1024) + ("$(cat /proc/meminfo | grep -m 1 Cached: | awk '{print $2}' | sed 's/k//')" /1024))) / ("$(cat /proc/meminfo | grep MemTotal: | awk '{print $2}' | sed 's/k//')" /1024) *100" | bc)
SwpUsedPercent=$(echo "scale = 2; (("$(cat /proc/meminfo | grep SwapTotal: | awk '{print $2}' | sed 's/k//')" /1024) - ("$(cat /proc/meminfo | grep SwapFree: | awk '{print $2}' | sed 's/k//')" /1024)) / ("$(cat /proc/meminfo | grep SwapTotal: | awk '{print $2}' | sed 's/k//')" /1024) *100" | bc)

CPUmodel=$(cat /proc/cpuinfo | grep "model name" | sed 's/.*: //')
CPUfreq=$(cat /proc/cpuinfo | grep -m 1 "cpu MHz" | sed 's/.*: //')
CPUcache=$(cat /proc/cpuinfo | grep -m 1 "cache size" | sed 's/.*: //')


echo "<openbox_pipe_menu>"
echo "<separator label=\"$User @ $Host \"/>"
echo "<item label=\"$System $Release $Arch\"/>"

echo "<separator label = \"Filesystem ~~ Type ~~ Total ~ Used ~ Free ~ % ~ Mount   \"/>"
echo "<item label=\"$SizeMountPoint1\"/>"
echo "<item label=\"$SizeMountPoint2\"/>"

echo "<separator label=\"CPU ~ RAM ~ Swap | Used/Total     \"/>"
echo "<item label=\"RAM used: $MemUsed MiB/$MemTotal MiB ~ $MemUsedPercent%\"/>"
echo "<item label=\"Swp used: $SwpUsed MiB/$SwpTotal MiB ~ $SwpUsedPercent%\"/>"
echo "<item label=\"CPU ~ $CPUmodel\"/>"
echo "<item label=\"CPU @ $CPUfreq MHz  ~  CPU Cache: $CPUcache\"/>"

echo "<separator label = \"Network ~ "$NetworkDevice1"  \"/>"
echo "<item label=\""$NetworkDevice1" ~         ip: $NetDev1ip\"/>"
echo "<item label=\""$NetworkDevice1" ~ downloaded: "$NetDev1down"iB\"/>"
echo "<item label=\""$NetworkDevice1" ~   uploaded: "$NetDev1up"iB\"/>"

#echo "<separator label = \"Network ~ "$NetworkDevice2"  \"/>"
#echo "<item label=\""$NetworkDevice1" ~         ip: $NetDev2ip\"/>"
#echo "<item label=\""$NetworkDevice1" ~ downloaded: "$NetDev2down"iB\"/>"
#echo "<item label=\""$NetworkDevice1" ~   uploaded: "$NetDev2up"iB\"/>"

echo "<separator label = \"Date ~ Time\"/>"
echo "<item label=\"$DateDate\"/>"
echo "<item label=\"$DateWeek\"/>"
echo "<item label=\"$DateDay\"/>"
echo "<item label=\"$DateTime\"/>"
echo "<item label=\"  Up ~ $UpTime\"/>"

echo "</openbox_pipe_menu>"

Thank you cool

Offline

#79 2007-10-08 16:09:26

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

Re: October 2007 Screenshots

quarks wrote:

Thank you cool

You're welcome smile

Offline

#80 2007-10-08 16:17:40

thewayofzen
Member
Registered: 2007-06-10
Posts: 79

Re: October 2007 Screenshots

An older desktop of mine that ive been using again for a day or so after not being pleased with the results of any of my weekend creations.. 

promiseqt2.th.png


Gtk theme by me
Openbox theme by me
Icons are egolatra's takmek3
Conky and pypanel configs poorly done by me wink

Offline

#81 2007-10-08 17:22:24

Roberth
Member
From: The Pale Blue Dot
Registered: 2007-01-12
Posts: 894

Re: October 2007 Screenshots

Clean:

http://xs.to/xs.php?h=xs320&d=07411&f=Screenshot-1.png

Busy:

http://xs.to/xs.php?h=xs220&d=07411&f=Screenshot.png

Anyone got any bluecolor that matches that blue creature better?


Use the Source, Luke!

Offline

#82 2007-10-08 17:50:09

quarks
Member
From: Netherlands
Registered: 2007-05-14
Posts: 66

Re: October 2007 Screenshots

Roberth wrote:

Clean:

http://xs.to/xs.php?h=xs320&d=07411&f=Screenshot-1.png

Busy:

http://xs.to/xs.php?h=xs220&d=07411&f=Screenshot.png

Anyone got any bluecolor that matches that blue creature better?

Nice, where's that wallpaper from?
And is that American Psycho on your mplayer? wink

I'm also worried about the level of music knowledge displayed in the screenshot... tongue

Offline

#83 2007-10-08 17:58:06

Roberth
Member
From: The Pale Blue Dot
Registered: 2007-01-12
Posts: 894

Re: October 2007 Screenshots

quarks wrote:
Roberth wrote:

Clean:

http://xs.to/xs.php?h=xs320&d=07411&f=Screenshot-1.png

Busy:

http://xs.to/xs.php?h=xs220&d=07411&f=Screenshot.png

Anyone got any bluecolor that matches that blue creature better?

Nice, where's that wallpaper from?
And is that American Psycho on your mplayer? wink

I'm also worried about the level of music knowledge displayed in the screenshot... tongue

Yeah it's american psycho, don't mess with queen!

http://www.dlanham.com/art/fetch/


Use the Source, Luke!

Offline

#84 2007-10-08 18:45:30

quarks
Member
From: Netherlands
Registered: 2007-05-14
Posts: 66

Re: October 2007 Screenshots

Roberth wrote:
quarks wrote:
Roberth wrote:

Clean:

http://xs.to/xs.php?h=xs320&d=07411&f=Screenshot-1.png

Busy:

http://xs.to/xs.php?h=xs220&d=07411&f=Screenshot.png

Anyone got any bluecolor that matches that blue creature better?

Nice, where's that wallpaper from?
And is that American Psycho on your mplayer? wink

I'm also worried about the level of music knowledge displayed in the screenshot... tongue

Yeah it's american psycho, don't mess with queen!

http://www.dlanham.com/art/fetch/

I meant the IM conversation... Eric Clapton.. dance? hmm

Offline

#85 2007-10-08 18:59:42

Roberth
Member
From: The Pale Blue Dot
Registered: 2007-01-12
Posts: 894

Re: October 2007 Screenshots

oh... that girl mistake eric clapton with soembody else:P


Use the Source, Luke!

Offline

#86 2007-10-08 19:20:15

Zer0
Member
From: Windsor, ON, Canada
Registered: 2006-08-25
Posts: 299

Re: October 2007 Screenshots

heavenquake wrote:

Got that wallpaper from here http://www.zeroingin.net/skins/, and no it's not my site even though my nick is also Zer0.
A couple interesting wallpaper's on there.  The one I used is "Dark Bliss Wraith" which I cropped because I don't have widescreen. The rider on the horse seems to be a Wraith from LOTR, which is what I was looking for.

Sorry for the late response.

Offline

#87 2007-10-08 20:01:00

gazj
Member
From: /home/gazj -> /uk/cambs
Registered: 2007-02-09
Posts: 681
Website

Re: October 2007 Screenshots

Fancied a change form last month, moved from fluxbox to gnome.  Unlike me to go MS.  How long till i get bored??

thumb-screenie071008.png

Last edited by gazj (2007-10-08 20:04:05)

Offline

#88 2007-10-08 21:11:15

okraits
Member
From: Germany
Registered: 2006-03-02
Posts: 142
Website

Re: October 2007 Screenshots

yettenet wrote:

I slightly changed my .Xdefaults and .screenrc since posting the picture, however, here it is:

Nice overall sysinfo script - thanks for sharing!

Offline

#89 2007-10-08 22:49:02

alexmatos
Member
From: Rio de Janeiro, Brasil
Registered: 2007-08-06
Posts: 124

Re: October 2007 Screenshots

Roberth wrote:

Clean:

http://xs.to/xs.php?h=xs320&d=07411&f=Screenshot-1.png

Busy:

http://xs.to/xs.php?h=xs220&d=07411&f=Screenshot.png

Anyone got any bluecolor that matches that blue creature better?

Which font is that one on the window title? Looks nice!

Offline

#90 2007-10-08 23:38:15

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

Re: October 2007 Screenshots

okraits wrote:
yettenet wrote:

I slightly changed my .Xdefaults and .screenrc since posting the picture, however, here it is:

Nice overall sysinfo script - thanks for sharing!

So far almost everyone liked it, yay! lol

Offline

#91 2007-10-09 01:53:36

Flake
Member
Registered: 2007-09-11
Posts: 17

Re: October 2007 Screenshots

I didn't find appropriate topic except this one. I would like to ask how was achieved transparency for Glossy metacity theme?
It's official screenshot of GNOME 2.20

http://www.gnome.org/start/2.20/notes/e … enshot.png

Offline

#92 2007-10-09 01:55:25

testube_babies
Member
From: 127.0.0.1
Registered: 2007-06-26
Posts: 115

Re: October 2007 Screenshots

Flake wrote:

I didn't find appropriate topic except this one. I would like to ask how was achieved transparency for Glossy metacity theme?
It's official screenshot of GNOME 2.20

http://www.gnome.org/start/2.20/notes/e … enshot.png

Looks like Compiz to me...

Offline

#93 2007-10-09 01:56:32

testube_babies
Member
From: 127.0.0.1
Registered: 2007-06-26
Posts: 115

Re: October 2007 Screenshots

scrotem9.th.jpg

Dock is awn-curves.  (PKGBUILD)

Offline

#94 2007-10-09 07:04:33

zaqrack
Member
From: Budapest, Hungary
Registered: 2005-10-31
Posts: 7
Website

Re: October 2007 Screenshots

New notebook, new life wink
scrshotnr0.th.png
thinkpad X40 smile
gnome 2.20
compiz-fusion (expo binded to middle mouse button rocks smile)
emerald: ButtonLess
icons: tango
gtk: murrina-gilouche
fonts: dejavu
awn
wallpaper: http://customize.org/wallpapers/53121
love love love

Last edited by zaqrack (2007-10-09 07:07:34)

Offline

#95 2007-10-09 07:23:26

Mo
Member
Registered: 2007-01-18
Posts: 92

Re: October 2007 Screenshots

Would you share your irssi theme? smile It's not on your site..

edit: Problem solved via IRC...

Last edited by Mo (2007-10-09 08:02:42)

Offline

#96 2007-10-09 08:21:36

grte
Member
From: Canada
Registered: 2007-03-21
Posts: 42

Re: October 2007 Screenshots

Clean:
desktopcleanku3.th.jpg

Busy:
desktopbusylp9.th.jpg

Openbox + pypanel, conky, urxvt, screen, irssi, ncmpc, pcmanfm, graveman

Offline

#97 2007-10-09 08:44:16

zodmaner
Member
Registered: 2007-07-11
Posts: 653

Re: October 2007 Screenshots

grte wrote:

Clean:
http://img530.imageshack.us/img530/6029 … ku3.th.jpg

Busy:
http://img407.imageshack.us/img407/5443 … lp9.th.jpg

Openbox + pypanel, conky, urxvt, screen, irssi, ncmpc, pcmanfm, graveman

Nice. Would you mind sharing that wallpaper?

Offline

#98 2007-10-09 08:53:58

grte
Member
From: Canada
Registered: 2007-03-21
Posts: 42

Re: October 2007 Screenshots

zodmaner wrote:

Nice. Would you mind sharing that wallpaper?

Sure.  http://jthreeconcepts.com/images/concep … e-runs.jpg

Offline

#99 2007-10-09 08:54:33

zodmaner
Member
Registered: 2007-07-11
Posts: 653

Re: October 2007 Screenshots

grte wrote:
zodmaner wrote:

Nice. Would you mind sharing that wallpaper?

Sure.  http://jthreeconcepts.com/images/concep … e-runs.jpg

Thanks! big_smile

Offline

#100 2007-10-09 08:59:59

Theomachos
Member
From: Germany
Registered: 2007-07-31
Posts: 67
Website

Re: October 2007 Screenshots

phrakture wrote:
Theomachos wrote:

http://img392.imageshack.us/img392/8203 … jz5.th.png http://img394.imageshack.us/img394/9361 … yr3.th.png

Stumpwm with
1)  Emacs (Slime, Emms, Erc), rxvt-unicode and htop in Scratchpad-Group (Just renamed it to EmacsPad for obvious reasons...).
2) Stumpish (shell-prompt for Stumpwm) and Firefox/Conkeror

I have to give you props for being the only StumpWM poster I've seen in these threads.

I always loved stump but found it weird to work with. So I stick to ratpoison

Maybe I should add another screenie to convince you that Stumpwm is REALLY useable.
Typing "weather" in the command prompt and....

weatherwh2.th.png

Thanks to the weatherget-developer smile

A new stable version of Stumpwm is almost finished. The development version supports:

- window-placement rules
- dumping frame layouts for specific groups or the whole desktop structure to a file (so you can easily define your own layouts by splitting frames and saving the result - maybe assign a hotkey to restore)
- its own shell-prompt (stumpish) - so you dont have to set up slime for your hacking
- many more features

http://www.archive.org/details/TheStumpWMExperience <- watch this smile  (Please download the ogg - flash is broken)


There is one thing even more vital to science than intelligent methods; and that is, the sincere desire to find out the truth, whatever it may be.
Charles S. Peirce

Offline

Board footer

Powered by FluxBB