You are not logged in.
Guidelines
· DO NOT post full resolution screenshots! You can use the "mogrify" command (pacman -S imagemagick) to make a thumbnail of your screenshot:
$ cp screenie.png thumb-screenie.png
$ mogrify -resize 20% thumb-screenie.png
Twenty percent of the original size is great for 1024x768 screenies. You can then upload these images to your server and use the following code to show them on the forum:
[url=http://my.site.com/screenie.png][url]http://my.site.com/thumb-screenie.png[/url][/url]
This displays the thumbnail as a link to the screenie like this:
http://dtw.jiwe.org/share/screenies/thumb-screenie.png
· If you do not have your own upload space you can upload to http://art.archlinux.org and link your shot here (with text) for discussion
· Several websites also offer free image hosting, of these ImageShack is very popular and does a neat auto thumbnail:
http://img247.echo.cx/img247/7290/20050 … 7fv.th.png
You should use the "Thumbnail for forums (1)" link code that is supplied to post here
· Once the new month begins please do not post new screenies in the old threads.
· If the screenshot has questionable material that might not be safe to view while at work or in a school setting, please post only a link and not a thumbnail, along with a mention of "Not Safe for Work". Posts that do not adhere to this are subject to deletion without notice at any time.
· Please try to include any links to your wallpaper or configs that you may have and/or the names of your icon theme, running apps, DE, etc. in the same post to reduce unnecessary clutter later.
Offline
Hmm.. urxvt,tint,sonata,ob etc..
wallpaper
Offline
http://timtux.net/ - my personal blog about almost everything
Offline
http://www.jeah.net/~justin/archsept1thumb.png
+ openbox
+ urxvt
+ sonata
+ pypanel
+ tint/ttm
+ visibility
Cool desktop, mind sharing your urxvt specs?
Offline
nice, 2Justin - share your .bashrc pls
Offline
My secondary computer, which I use when I'm at my parents, haven't had any time style my desktop on this computer, I will come later with the screen of my primary computer desktop.
Last edited by Roberth (2007-09-01 19:32:49)
Use the Source, Luke!
Offline
Though it's far away from finished, I feel like it's time to present my current setup. (:
The WM is xmonad, the statusbar are actually two instances of dzen2, which are displaying the output of xmonad's DynamicLog extension and an self-written bash script.
Last edited by harlekin (2007-09-01 19:38:40)
Hail to the thief!
Offline
Pretty much the same as last month, change of fluxbox theme, and using idesk for the mpc buttons with conky
I need to improve rox, anyone have any ideas on tarting this up, mainly the navigation buttons need some attention.
Last edited by gazj (2007-10-08 20:01:20)
Offline
Though it's far away from finished, I feel like it's time to present my current setup. (:
http://img76.imageshack.us/img76/940/shotwa0.th.png
The WM is xmonad, the statusbar are actually two instances of dzen2, which are displaying the output of xmonad's DynamicLog extension and an self-written bash script.
nifty. which browser is that? i can't put my finger on it.
I've seen young people waste their time reading books about sensitive vampires. It's kinda sad. But you say it's not the end of the world... Well, maybe it is!
Offline
nifty. which browser is that? i can't put my finger on it.
it's firefox with ... http://bbs.archlinux.org/viewtopic.php? … 84#p273884 !
pacman roulette : pacman -S $(pacman -Slq | LANG=C sort -R | head -n $((RANDOM % 10)))
Offline
Offline
Offline
justin wrote:http://www.jeah.net/~justin/archsept1thumb.png
+ openbox
+ urxvt
+ sonata
+ pypanel
+ tint/ttm
+ visibilityCool desktop, mind sharing your urxvt specs?
.screenrc
altscreen on
term screen-256color
hardstatus alwayslastline "%{yk}( %{Y}%H %{y})%= %{wk}%?%-Lw%?%{R}(%{W}%n*%f %t%?(%u)%?%{R})%{w}%?%+Lw%?%?%= %{y}( %{Y}load: %l %{y})"
screen -t irc 0 irssi
screen -t torrent 1 rtorrent
.Xdefaults
! urxvt settings & colors
urxvt*background: #242424
urxvt*cursorBlink: true
urxvt*font: xft:DejaVu Sans Mono:pixelsize=10
urxvt*boldFont: xft:DejaVu Sans Mono:pixelsize=10
urxvt*foreground: white
urxvt*geometry: 80x25
! V
urxvt*inheritPixmap: true
urxvt*internalBorder: 0
urxvt*loginShell: true
urxvt*saveLines: 4000
urxvt*scrollBar: false
! V
urxvt*shading: 30
urxvt*termName: rxvt
! V
!urxvt*tintColor: #ffffff
urxvt*underlineColor: #86a2be
URxvt.perl-ext-common: default,matcher
URxvt.matcher.button: 1
URxvt.matcher.pattern.1: \bwww\.[\w-]\.[\w./?&@#-]*[\w/-]
URxvt*urlLauncher: firefox
urxvt.perl-ext-common: matcher
!black text
urxvt*color0: #242424
urxvt*color8: #cdb5cd
!red text
urxvt*color1: #bf7979
urxvt*color9: #f4a45f
!green text
urxvt*color2: #97b26b
urxvt*color10: #c5f779
!yellow text
urxvt*color3: #cdcda1
urxvt*color11: #ffffaf
!blue text
urxvt*color4: #86a2be
urxvt*color12: #98afd9
!magenta text
urxvt*color5: #d9b798
urxvt*color13: #d7d998
!cyan text
urxvt*color6: #a1b5cd
urxvt*color14: #a1b5cd
!white
urxvt*color7: #ffffff
urxvt*color15: #dedede
nice, 2Justin - share your .bashrc pls
extract () {
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xjf $1 ;;
*.tar.gz) tar xzf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar x $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xf $1 ;;
*.tbz2) tar xjf $1 ;;
*.tgz) tar xzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*) echo "'$1' cannot be extracted via extract()" ;;
esac
else
echo "'$1' is not a valid file"
fi
}
rmspaces() {
ls | while read -r FILE
do
mv -v "$FILE" `echo $FILE | tr ' ' '_' | tr -d '[{}(),\!]' | tr -d "\'" | tr '[A-Z]' '[a-z]' | sed 's/_-_/_/g'`
done
}
makepasswords() {
perl <<EOPERL
my @a = ("a".."z","A".."Z","0".."9",(split //, q{#@,.<>$%&()*^}));
for (1..10) {
print join "", map { \$a[rand @a] } (1..rand(3)+10);
print qq{\n}
}
EOPERL
}
alias ls='ls --color=auto'
#PS1="\[\e[36;1m\]\u @ \[\e[32;1m\]\H > \[\e[0m\]"
PS1='\[\033[0;36m\]\033(0l\033(B\[\033[0m\][\[\033[1;31m\]\u\[\033[0m\]]\[\033[0;36m\]\033(0q\033(B\[\033[0m\][\[\033[1;33m\]@\h\[\033[0m\]]\[\033[0;36m\]\033(0q\033(B\[\033[0m\][\[\033[0;37m\]21:24\[\033[0m\]]\[\033[0;36m\]\033(0q\033(B\033(0q\033(B\033(0q\033(B\033(0q\033(B\033(0q\033(B\033(0q\033(B\033(0q\033(B\033(0q\033(B\[\033[0m\][\[\033[1;33m\]\w\[\033[0m\]]\n\[\033[0;36m\]\033(0m\033(B\[\033[0m\]> '
complete -cf sudo
Offline
upsidaisium wrote:nifty. which browser is that? i can't put my finger on it.
it's firefox with ... http://bbs.archlinux.org/viewtopic.php? … 84#p273884 !
aha! i didn't think of that, though i've read of it before. thanks
I've seen young people waste their time reading books about sensitive vampires. It's kinda sad. But you say it's not the end of the world... Well, maybe it is!
Offline
Justin, thanks for configs
Offline
http://www.jeah.net/~justin/archsept1thumb.png
+ openbox
+ urxvt
+ sonata
+ pypanel
+ tint/ttm
+ visibility
can you guys share your wallpapers please?
thanks
Last edited by iggy (2007-09-02 22:11:48)
sorry for my bad english
Offline
Offline
Offline
Offline
Offline