You are not logged in.

#126 2010-02-05 06:03:20

bioe007
Member
Registered: 2007-11-12
Posts: 56

Re: February 2010 Screenshots

weakhead wrote:

http://s6.tinypic.com/2j437eo_th.jpg

Not much changed since last scrot. Consider this as a (still early?) preview of ArchModern suite, inspired by arch-stuff.org site. I still have to think of titlebar buttons for Openbox (those has been borrowed from Dandelion theme).

WM: Openbox
Panel: BMPanel

@arialis111
Beautiful as always!

@The_Baron
It's a screenlet, I think...

that looks nice and clean

what gtk theme/engine are you using?

Offline

#127 2010-02-05 08:44:17

zoqaeski
Member
From: /earth/australia/.
Registered: 2009-09-30
Posts: 132

Re: February 2010 Screenshots

Not much has changed (I get rather attached to themes and whatnot). Arch is turning out to be heaps better than Ubuntu big_smile

Desktop
tM2dmZw

Some "work" -- tmux, Sonata, and a few other things
tM2dmZg

My terminal colours need a bit of an update though; any suggestions on how I could improve the colours I've got there? I like them, but limiting myself to just eight doesn't seem quite right =/

Offline

#128 2010-02-05 10:50:16

weakhead
Member
From: Poland
Registered: 2008-08-21
Posts: 341
Website

Re: February 2010 Screenshots

bioe007 wrote:
weakhead wrote:

[...]

that looks nice and clean

what gtk theme/engine are you using?

Themes are under construction, I will make a thread about it when I finish it. It's Murrine-git based theme.

Offline

#129 2010-02-06 01:34:54

abijr
Member
Registered: 2008-05-18
Posts: 71

Re: February 2010 Screenshots

Pnevma wrote:
abijr wrote:

What irc client is that?
Would you mind sharing its conf? big_smile

Sorry for the late reply.

That's Weechat. I've added the configs to my Bitbucket account (link in signature.) You'll also need to add the buffers.pl script to get the bar at the top.

Thanks

Offline

#130 2010-02-06 04:49:41

GraveyardPC
Member
Registered: 2008-11-29
Posts: 99

Re: February 2010 Screenshots

Still trying to finish the configs, but here's my new setup:
Xmonad_0_9_1_by_graveyardpc.png

A large improvement over my old Gnome setup:
Clutter_by_graveyardpc.png

Last edited by GraveyardPC (2010-02-06 04:53:29)

Offline

#131 2010-02-06 06:11:51

toxygen
Member
Registered: 2008-08-22
Posts: 713

Re: February 2010 Screenshots

What are you using to display the traffic camera? and does it automatically refresh?  that looks cool


"I know what you're thinking, 'cause right now I'm thinking the same thing. Actually, I've been thinking it ever since I got here:
Why oh why didn't I take the BLUE pill?"

Offline

#132 2010-02-06 06:14:51

GraveyardPC
Member
Registered: 2008-11-29
Posts: 99

Re: February 2010 Screenshots

toxygen wrote:

What are you using to display the traffic camera? and does it automatically refresh?  that looks cool

It's a program I made using pygtk and mplayer. It doesn't work anymore due to how MDOT changed their camera system. However it would simply spawn mplayer instances connected to the old MDOT realplayer feeds and display them in a GTK table.

This is all it was:

#!/usr/bin/python
# MDOT CHART

import pygtk
pygtk.require("2.0")
import gtk, os, commands, time

window    = gtk.Window()
table    = gtk.Table(rows=3, columns=3, homogeneous=True)
socket    = []
proc    = []
view    = [ "7:554/00/09", "8:554/00/10", "7:554/00/03", \
        "7:554/00/13", "8:554/00/04", "7:554/00/01", \
        "7:554/00/07", "8:554/00/02", "7:554/00/11" ]

def close_app(self):
    for i in range(0,9): os.kill(proc[i],3)
    time.sleep(0.5)
    gtk.main_quit()

def mplayer(i):
    return os.spawnl(os.P_NOWAIT,
        "/usr/bin/mplayer",
        "mplayer","-slave",
        "-wid",str(socket[i].get_id()),
        "pnm://170.93.143.13" + view[i])

for i in range(0,9):
    socket.append(gtk.Socket())
    table.attach(socket[i],(i%3),((i%3)+1),(i/3),((i/3)+1))
    socket[i].modify_bg(gtk.STATE_NORMAL,gtk.gdk.color_parse("black"))

window.add(table)
window.set_title("Maryland Department of Transportation | CHART")
window.set_default_size(960,720)
window.connect("destroy", close_app)

for i in range(0,9):proc.append(mplayer(i))

window.show_all()
gtk.main()

Last edited by GraveyardPC (2010-02-06 06:26:26)

Offline

#133 2010-02-06 06:15:36

prasetyams
Member
From: Jakarta
Registered: 2008-04-29
Posts: 74

Re: February 2010 Screenshots

GraveyardPC wrote:

Still trying to finish the configs, but here's my new setup:
http://th04.deviantart.net/fs71/300W/f/ … yardpc.png

A large improvement over my old Gnome setup:
http://th04.deviantart.net/fs39/300W/f/ … yardpc.png

Cool, really love the colors smile


Where's my sig?

Offline

#134 2010-02-06 06:23:13

GraveyardPC
Member
Registered: 2008-11-29
Posts: 99

Re: February 2010 Screenshots

prasetyams wrote:

Cool, really love the colors smile

Thanks

Offline

#135 2010-02-06 06:49:30

heleos
Member
From: Maine, USA
Registered: 2007-04-24
Posts: 678

Re: February 2010 Screenshots

GraveyardPC wrote:

Still trying to finish the configs, but here's my new setup:
http://th04.deviantart.net/fs71/300W/f/ … yardpc.png

A large improvement over my old Gnome setup:
http://th04.deviantart.net/fs39/300W/f/ … yardpc.png

Man that looks great. For some reason I find Xmonad to be so much nicer looking than awesome.

I haven't used xmonad since 0.8.1, but is that calendar a contrib package, or a script? Mind sharing either way? smile

Offline

#136 2010-02-06 07:04:01

GraveyardPC
Member
Registered: 2008-11-29
Posts: 99

Re: February 2010 Screenshots

heleos wrote:

Man that looks great. For some reason I find Xmonad to be so much nicer looking than awesome.

I haven't used xmonad since 0.8.1, but is that calendar a contrib package, or a script? Mind sharing either way? smile

What you see there is actually three different Dzen instances, the main bar (Xmonad Pretty Printer), a time-and-date bar and the calendar dialog (which spawns when you click time-and-date, then vanishes after a short delay). They provide a basic calendar script on the Dzen website which I modeled mine from: http://dzen.geekmode.org/dwiki/doku.php?id=dzen:calendar. My setup is below, although I warn you -- my stuff is quite messy right now.

xinitrc:

#!/bin/sh

xsetroot -cursor_name left_ptr
feh --bg-scale ~/Desktop/doodle/xmonad-dual.png &
/home/matt/.xmonad/dzen/clock &
exec xmonad

clock:

#!/bin/bash
# Clock

while true; do
    date "+^i(/home/matt/.xmonad/dzen/sep.xbm)^p(4)%A,^fg(#ffffff)%l:%M %p^fg() "
    sleep 10;:
done | \
dzen2 \
-fn "DejaVu Sans Mono:pixelsize=10" \
-x 1130 -y 0 -w 150 -h 16 -ta r \
-e "button1=exec:/home/matt/.xmonad/dzen/calendar"

calendar:

#!/bin/bash
# Calendar

TODAY=$(expr `date +'%d'` + 0)
MONTH=`date +'%m'`
YEAR=`date +'%Y'`
 
(
date "+^i(/home/matt/.xmonad/dzen/down.xbm)^p(4)%A,^fg(#000000)^bg(#ff8800)%l:%M %p ^fg()^bg()"
echo
cal | sed -r -e "1,2 s/.*/^fg(#ffffff)&^fg()/" \
-e "s/(^| )($TODAY| $TODAY)($| )/\1^bg(#ff8800)^fg(#000000)\2^fg()^bg()\3/"

[ $MONTH -eq 12 ] && YEAR=`expr $YEAR + 1`
cal `expr \( $MONTH + 1 \) % 12` $YEAR | sed -e "1,2 s/.*/^fg(#ffffff)&^fg()/"

echo "^fg(#ff8800)^i(/home/matt/.xmonad/dzen/xmonad.xbm)^fg()"
xmonad --version | awk '{print "^fg(#ff8800)"$2"^fg()"}'

) | \
dzen2 \
-p 10 \
-fn "DejaVu Sans Mono:pixelsize=10" \
-x 1130 -y 0 -w 150 -l 20 -ta r -sa c \
-e "onstart=uncollapse;button1=exit"

Last edited by GraveyardPC (2010-02-06 07:08:17)

Offline

#137 2010-02-06 10:21:14

NeoXP
Member
From: MS Matrix
Registered: 2009-01-09
Posts: 206
Website

Re: February 2010 Screenshots

zoqaeski wrote:

Not much has changed (I get rather attached to themes and whatnot). Arch is turning out to be heaps better than Ubuntu big_smile

Desktop
http://omploader.org/tM2dmZw

Some "work" -- tmux, Sonata, and a few other things
http://omploader.org/tM2dmZg

My terminal colours need a bit of an update though; any suggestions on how I could improve the colours I've got there? I like them, but limiting myself to just eight doesn't seem quite right =/

I'm interested to see how your color-scheme looks on my desktop, mind posting them?

Thx.


Arch x86_64 on HP 6820s and on HP nx9420. Registered Linux User 350155, since 24-03-2004
"Everyone said that it could not be done, until someone came along who didn't know that."

Offline

#138 2010-02-06 11:32:46

zoqaeski
Member
From: /earth/australia/.
Registered: 2009-09-30
Posts: 132

Re: February 2010 Screenshots

NeoXP wrote:
zoqaeski wrote:

...

I'm interested to see how your color-scheme looks on my desktop, mind posting them?

Thx.

Here's the part of my ~/.Xdefaults that contains the colours; and the second section contains my conkyrc which also lists the colours it uses. I'd post the GTK/Openbox-3 theme, but I haven't worked it enough to upload it yet; they don't quite fit together as nicely as I'd like.

Offline

#139 2010-02-06 14:06:22

heleos
Member
From: Maine, USA
Registered: 2007-04-24
Posts: 678

Re: February 2010 Screenshots

GraveyardPC wrote:

What you see there is actually three different Dzen instances, the main bar (Xmonad Pretty Printer), a time-and-date bar and the calendar dialog (which spawns when you click time-and-date, then vanishes after a short delay). They provide a basic calendar script on the Dzen website which I modeled mine from: http://dzen.geekmode.org/dwiki/doku.php?id=dzen:calendar. My setup is below, although I warn you -- my stuff is quite messy right now.
.
.
.

Eeeeep, thanks smile Looks like I have some reading to do

Offline

#140 2010-02-06 14:24:33

p1mps
Member
From: italy
Registered: 2009-05-04
Posts: 28
Website

Re: February 2010 Screenshots

My fluxbox with conky and screen
satfeb61534252010.th.png

Last edited by p1mps (2010-02-06 14:51:09)


Science is a differential equation. Religion is a boundary condition.
Alan Turing

Offline

#141 2010-02-06 15:04:59

samuele.mattiuzzo
Member
From: Treviso, IT
Registered: 2009-10-12
Posts: 307
Website

Re: February 2010 Screenshots

wmii + urxvt + bash + conky smile

satfeb61554072010.th.png

Offline

#142 2010-02-06 16:47:12

JesusSuperstar
Member
From: /dev/heaven
Registered: 2009-10-11
Posts: 77
Website

Re: February 2010 Screenshots

GraveyardPC wrote:

Still trying to finish the configs, but here's my new setup:
http://th04.deviantart.net/fs71/300W/f/ … yardpc.png

A large improvement over my old Gnome setup:
http://th04.deviantart.net/fs39/300W/f/ … yardpc.png

looks great wink
would you share your ncmpcpp config ?


.:[dotfiles]:.

Offline

#143 2010-02-06 17:01:48

brisbin33
Member
From: boston, ma
Registered: 2008-07-24
Posts: 1,799
Website

Re: February 2010 Screenshots

desktop_1002061200-thumb.png

Offline

#144 2010-02-06 17:03:57

GraveyardPC
Member
Registered: 2008-11-29
Posts: 99

Re: February 2010 Screenshots

JesusSuperstar wrote:

looks great wink
would you share your ncmpcpp config ?

Sure.

# MPD ---------------------------------------------

mpd_host = "localhost"
mpd_port = "6600"
mpd_music_dir = "/storage1/music"
#mpd_connection_timeout = "5"
#mpd_crossfade_time = "5"

# Delays ------------------------------------------

playlist_disable_highlight_delay = "2"
#message_delay_time = "4"

# Format ------------------------------------------

song_columns_list_format = "(7)[black]{lr} (25)[white]{ar} (36)[]{t} (25)[black]{bEr} (7)[black]{yE}"
selected_item_prefix = "$8"
selected_item_suffix = "$9"

# Various -----------------------------------------

fancy_scrolling = "yes"
playlist_display_mode = "columns"
browser_display_mode = "columns"
search_engine_display_mode = "columns"
active_column_color = "white"
progressbar_color = "yellow"
incremental_seeking = "yes"
autocenter_mode = "yes"
header_visibility = "no"
statusbar_visibility = "no"
progressbar_visibility = "no"
follow_now_playing_lyrics = "yes"
display_screens_numbers_on_start = "yes"
ignore_leading_the = "yes"
lyrics_database = "2"
colors_enabled = "yes"
clock_display_seconds = "yes"
ncmpc_like_songs_adding = "yes"

Last edited by GraveyardPC (2010-02-06 17:04:34)

Offline

#145 2010-02-06 17:27:51

JohannesSM64
Member
From: Norway
Registered: 2009-10-11
Posts: 623
Website

Re: February 2010 Screenshots

Tag 1:
583485.jpeg
Tag 2:
583484.jpeg

Just switched from xchat to weechat (which is awesome). dwm, Vimperator, ncmpcpp, tmux, archey, urxvt with slight variation of jasonwryan's color scheme.

Last edited by JohannesSM64 (2010-02-06 17:34:46)

Offline

#146 2010-02-06 19:09:21

na12
Member
From: /home/serbia
Registered: 2008-12-23
Posts: 752

Re: February 2010 Screenshots

Screenshot.jpg

Screenshot-2.jpg

Gnome+Compiz,conky,dockbarx

Offline

#147 2010-02-06 19:18:26

pugnacity
Member
From: Berlin
Registered: 2004-05-22
Posts: 11
Website

Re: February 2010 Screenshots

which gtk theme do you use?


the life is like a action-adventure, cool graphic but a crap story

Offline

#148 2010-02-06 20:40:11

arialis111
Member
Registered: 2006-12-12
Posts: 63

Re: February 2010 Screenshots

pugnacity wrote:

which gtk theme do you use?

It's macalike, here you can download my 'modified' version http://www.speedyshare.com/files/207628 … ev2.tar.gz

Offline

#149 2010-02-06 20:41:46

.:B:.
Forum Fellow
Registered: 2006-11-26
Posts: 5,819
Website

Re: February 2010 Screenshots

Mind sharing your conkyrc?


Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy

Offline

#150 2010-02-06 21:07:51

Meyithi
Member
From: Wirral, UK
Registered: 2009-06-21
Posts: 550
Website

Re: February 2010 Screenshots

weakhead wrote:

http://s6.tinypic.com/2j437eo_th.jpg

Not much changed since last scrot. Consider this as a (still early?) preview of ArchModern suite, inspired by arch-stuff.org site. I still have to think of titlebar buttons for Openbox (those has been borrowed from Dandelion theme).

WM: Openbox
Panel: BMPanel2

@arialis111
Beautiful as always!

@The_Baron
It's a screenlet, I think...

BMPanel is perfect, don't change it too much!

Also, maybe a version that has no blue and uses the dark grey from selected BMPanel items?


The mind roams more freely in empty rooms.
dwm - colours - ncmpcpp - system
irc://irc.freenode.net:meyithi

Offline

Board footer

Powered by FluxBB