You are not logged in.
I didn't change the colours from default, im using the git version and I just copied over the default config to ~
edit: this is ncmpcpp btw
I have to pay more attention to the boards. I wasn't even aware that that ncmpc++ existed. (My Arch installation is so stable, I haven't had reason to stop by lately.)
Offline
skottish wrote:@Cosay:
http://bbs.archlinux.org/viewtopic.php?id=61754
And why are you posting Windows shots here? This section is provided to help Arch users get their set up looking good.
It's unix related, and no different than when Archers post screenshots on the Ubuntu forums.
Besides, where does it say in your linked topic that this is only for Arch Linux screenshots?
Good point on that rule not being posted yet, and you're right. We have been discussing it.
Anyway, please use smaller images in the forums. If anyone wants to see it up close, they can click.
Offline
Daisuke_Aramaki wrote:Using Analog gtk with Modified Jello fluxbox this time!
wallpaper link?
sorry about the delay! Here you go!
"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
Anyway, please use smaller images in the forums. If anyone wants to see it up close, they can click.
Done!
Offline
trying to migrate from awesome do dwm
Why switch to dwm? As I understand it, Awesome is a branch of dwm that doesn't abide by the idea that source code should be less than x lines.
What do you want from dwm that Awesome doesn't have? Or are you just trying it to try it?
Offline
Varreon: Awesome is massive in comparison to DWM
Offline
And complicated. The config in DWM is really easy to understand, even for those who don't know C.
Edit: At least in comparison to Awesome.
Last edited by Honken (2009-01-29 01:41:29)
Offline
Masters of the Universe time The episode is Mekaneck's Lament from Season 1.
The gtk theme is Cobble from Lokheed@deviantart. Icons are also from Lokheed. Fluxbox is modified Jello.
"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
Ranguvar wrote:Wallpaper please / where'd you get it? It's very nice
There you go http://vhm-alex.deviantart.com/art/Open … s-15043941
Thanks very much!
Offline
GTK/Metacity: Tea
Icons: Meliae
Wallpaper: The forbidden forest
Fonts: Dejavu Sans Book 7, Dejavu Sans Mono Book 8
Offline
http://xs135.xs.to/xs135/09054/screen0374.png.xs.jpg
GTK/Metacity: Tea
Icons: Meliae
Wallpaper: The forbidden forest
Fonts: Dejavu Sans Book 7, Dejavu Sans Mono Book 8
usually I don't like gnome setups, but I really dig this one.
oh and the wallpaper's great, thanks for the link
check this out
http://www.myspace.com/banditsinthewoods
Offline
rc.lua causes brain cancer. that is why trying to migrate to dwm. but... i really love awesome:( i'll see. who knows what will happen.
Offline
Offline
Xdefaults, please?
(lambda ())
Offline
i'm using xfterm4, my terminal rc is here if you still want it.
Offline
Went with an abstract wallpaper this time. Still Openbox though.
Offline
Nice desk Berticus, any links for dzen scripts,xmonad.hs etc
Cheers
Offline
xmonad.hs:
import XMonad
import XMonad.Layout
import XMonad.Config (defaultConfig)
import XMonad.Layout.NoBorders
import Data.Bits
import XMonad.Hooks.ManageDocks
import XMonad.Operations
import qualified XMonad.StackSet as W
import qualified Data.Map as M
import Data.Ratio
import Graphics.X11.Xlib
import System.IO
import XMonad.Layout.Dishes
import XMonad.Layout.Grid
import XMonad.Layout.MosaicAlt
import XMonad.Layout.ThreeColumns
main = xmonad $ defaultConfig
{ borderWidth = 1
, normalBorderColor = "black"
, focusedBorderColor = "green"
, terminal = "urxvt"
, manageHook = myManageHook
, layoutHook = avoidStruts (smartBorders $ Mirror tiled ||| tiled ||| ThreeCol 1 (3/100) (1/2) ||| MosaicAlt M.empty ||| Dishes 2 (1/6) ||| Grid ||| Full)
, keys = newKeys
}
where
tiled = Tall 1 (3%100) (680%1000)
myManageHook = composeAll
[ manageDocks
, className =? "MPlayer" --> doFloat
, className =? "Gimp" --> doFloat
, className =? "VLC media player" --> doFloat
, resource =? "desktop_window" --> doIgnore ]
myKeys x =
[ ((modMask x .|. shiftMask , xK_a ), withFocused (sendMessage . expandWindowAlt))
, ((modMask x .|. shiftMask , xK_z ), withFocused (sendMessage . shrinkWindowAlt))
, ((modMask x .|. shiftMask , xK_s ), withFocused (sendMessage . tallWindowAlt))
, ((modMask x .|. shiftMask , xK_d ), withFocused (sendMessage . wideWindowAlt))
, ((modMask x .|. controlMask, xK_space), sendMessage resetAlt)
]
newKeys x = M.union (keys defaultConfig x) (M.fromList (myKeys x))
Floating VLC doesn't work though. I've tried different stuff there. I do plan to add more to it.
~/.bin/status:
#!/bin/zsh
cd ~/.bin/env
# Dzen configurations
DZENFNT="-*-lucidatypewriter-bold-*-*-*-10-*-75-*-*-*-iso8859-1"
DZENBG='#222222'
DZENFG='#009cff'
DZENX=0
DZENY=0
DZENWIDTH=1280
DZENALIGN=l
ICONPATH=/home/Berticus/.icons/dzen
# Program configurations
GAUGEBG='#323232'
GAUGEFG='#71c837'
INTERFACE=eth0
DATE_FORMAT='%B %d, %Y (%A) | %I:%M:%S (%p)'
FORECASTER=/home/Berticus/.bin/dzen_weather.pl
PIPEFILE=/home/Berticus/.purple/plugins/pipe
SPACE=298
MAILDIR=/home/Berticus/mail
MAILBOXES=(eng facebook family friends inbox invoice nscs school)
# Function configurations
SLEEP=0.5
WEATHERIVAL=7200
# Functions
fdate() {
date +${DATE_FORMAT}
}
fcpu() {
gcpubar -c 5 -i 0.1 -fg ${GAUGEFG} -bg ${GAUGEBG} -h 7 -w 70 | tail -1
}
RXB=`cat /sys/class/net/${INTERFACE}/statistics/rx_bytes`
TXB=`cat /sys/class/net/${INTERFACE}/statistics/tx_bytes`
fmusic() {
player=$( pgrep mocp );
if [ $player ]; then
state=`mocp -i | grep "State:" | cut -c 8-`
if [ $state != 'STOP' ]; then
artist=`mocp -i | grep "Artist:" | cut -c 9-`
songtitle=`mocp -i | grep "SongTitle:" | cut -c 12-`
totaltime=`mocp -i | grep "TotalTime:" | cut -c 12-`
currenttime=`mocp -i | grep "CurrentTime:" | cut -c 14-`
if [ -z ${artist} ]; then
artist="No artist"
fi
if [ -z ${songtitle} ]; then
songtitle="No title"
fi
if [ `textwidth ${DZENFNT} "$artist - $songtitle"` -ge 517 ]; then
artistname=( `echo $artist` 0 0)
if [ `textwidth ${DZENFNT} "$artistname[1] $artistname[2] $artistname[3] $artistname[4] - $songtitle"` -ge 517 ]; then
artist=`echo $artistname[1] | cut -c -10`
else
artist=`echo "$artistname[1]"`
for i in {2..4}; do
if [ $artistname[$i] != "0" ]; then
artist=`echo "$artist $artistname[$i]"`
fi
done
fi
artist=`echo "$artist..."`
fi
print -n "$(echo ${artist} \- ${songtitle} \[${currenttime}\/${totaltime}\] \{${state}\})"
else
print -n "No music is playing"
fi
else
print -n "MOC has not started"
fi
}
fweather() {
$FORECASTER
}
fpidgin() {
pidgin=$( pgrep pidgin);
if [ $pidgin ]; then
pidgin=$( cat $PIPEFILE );
if [ $pidgin = "on" ]; then
print -n "^fg(green)";
elif [ $pidgin = "newmsg" ]; then
print -n "^fg(orange)";
fi
else
print -n "^fg(#494949)";
fi
print -n "^i(${ICONPATH}/circle.xbm)^fg()";
}
fmail() {
count=0
for mailbox in $MAILBOXES; do
count=`echo $( ls ${MAILDIR}/${mailbox}/new | wc -l )+${count} | bc`
done
if [ $count != 0 ]; then
print -n "^i(${ICONPATH}/mini.mail.new.xpm)";
else
print -n "^i(${ICONPATH}/mini.mail.idle.xpm)";
fi
}
# Main
WEATHERCOUNTER=${WEATHERIVAL}
while :; do
PCPU=$(fcpu)
PDATE=$(fdate)
PMUSIC=$(fmusic)
PIM=$(fpidgin)
PMAIL=$(fmail)
if [ $WEATHERCOUNTER -ge $WEATHERIVAL ]; then
PWEATHER=$(fweather)
WEATHERCOUNTER=0
fi
RXBN=`cat /sys/class/net/${INTERFACE}/statistics/rx_bytes`
TXBN=`cat /sys/class/net/${INTERFACE}/statistics/tx_bytes`
RXR=$(printf "%5d\n" $(echo "($RXBN - $RXB) / 1024/${SLEEP}" | bc))
TXR=$(printf "%5d\n" $(echo "($TXBN - $TXB) / 1024/${SLEEP}" | bc))
MUSICSPACE=`textwidth ${DZENFNT} \'${PMUSIC}\'`
ENDING=`textwidth ${DZENFNT} \'${PDATE}\'`
SPACE=`echo 1280-230-111-${ENDING}-${MUSICSPACE} | bc`
LEAD=`echo $SPACE/2 | bc`
TRAIL=`echo ${SPACE}-${LEAD} | bc`
#echo $MUSICSPACE:$ENDING:$SPACE
echo "${PCPU} ^fg(green)^i(${ICONPATH}/arr_down.xbm)${RXR}^fg(orange)^i(${ICONPATH}/arr_up.xbm)${TXR}^fg() |^r(${LEAD}x0)${PMUSIC}^r(${TRAIL}x0)| ${PWEATHER} ${PIM} ${PMAIL} ${PDATE}"
RXB=$RXBN
TXB=$TXBN
WEATHERCOUNTER=$((WEATHERCOUNTER+1))
sleep $SLEEP
done | dzen2 -bg $DZENBG -fg $DZENFG -x $DZENX -y $DZENY -ta $DZENALIGN -h 14 -p -fn $DZENFNT
#done
This also needs a few kinks to be worked out. For example, if the artist or song name contains accents or special characters, textwidth doesn't return the correct amount of space. Also, I need to make the temperature a little more "fixed" so it always takes up the same amount of space.
The mbox_type for mutt is set to Maildir, and I use MOC as my music player.
Offline
@Breakage: Love those shots as usual when it comes to you desktop!
Are you using the fonts from http://pixelfonts.style-force.net/ "out of the box" or did you have to do any tweaking to get them display correctly? I seem to have trouble with them I really don't understand why. Since these are ttf's, the only thing I can think of is my anti-aliasing settings, but then again converting the .fon file to .bdf (and then to pcf.gz) results in a similary "crooked" font..? I really like those fonts and it would be nice to get them working!
EDIT: Hmm.. seems like I got it fixed messing around with Xft settings in .Xdefaults. At some point I had set my dpi different from xorg, so I guess that was a bit confusing for fonts. Anyway, keep up the good work with those desktops Breakage!
Last edited by sm4tik (2009-01-31 09:01:18)
Offline