You are not logged in.
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
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
erikl wrote:upsidaisium wrote:haven't really changed much, except the screen status line and the background (which you can't see...)
Mind sharing your .screenrc?
don't mind at all
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
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
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
Offline
Thank you
You're welcome
Offline
Offline
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
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?
I'm also worried about the level of music knowledge displayed in the screenshot...
Offline
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?I'm also worried about the level of music knowledge displayed in the screenshot...
Yeah it's american psycho, don't mess with queen!
Use the Source, Luke!
Offline
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?I'm also worried about the level of music knowledge displayed in the screenshot...
Yeah it's american psycho, don't mess with queen!
I meant the IM conversation... Eric Clapton.. dance?
Offline
oh... that girl mistake eric clapton with soembody else:P
Use the Source, Luke!
Offline
Zer0 wrote:KDEmod & Beryl (details in screenshot 2)
http://xs320.xs.to/xs320/07403/Oct_2007 … png.xs.jpg http://xs220.xs.to/xs220/07403/Oct_2007-Busy.png.xs.jpg
http://xs220.xs.to/xs220/07403/Oct_2007-Cube.png.xs.jpgIs it possible to borrow the wallpaper? looks neat
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
Offline
I slightly changed my .Xdefaults and .screenrc since posting the picture, however, here it is:
Nice overall sysinfo script - thanks for sharing!
Offline
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
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!
Offline
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
Offline
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
Looks like Compiz to me...
Offline
New notebook, new life
thinkpad X40
gnome 2.20
compiz-fusion (expo binded to middle mouse button rocks )
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
Would you share your irssi theme? It's not on your site..
edit: Problem solved via IRC...
Last edited by Mo (2007-10-09 08:02:42)
Offline
Clean:
http://img530.imageshack.us/img530/6029 … ku3.th.jpgBusy:
http://img407.imageshack.us/img407/5443 … lp9.th.jpgOpenbox + pypanel, conky, urxvt, screen, irssi, ncmpc, pcmanfm, graveman
Nice. Would you mind sharing that wallpaper?
Offline
Nice. Would you mind sharing that wallpaper?
Offline
zodmaner wrote:Nice. Would you mind sharing that wallpaper?
Thanks!
Offline
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/ConkerorI 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....
Thanks to the weatherget-developer
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 (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