You are not logged in.
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
Not much has changed (I get rather attached to themes and whatnot). Arch is turning out to be heaps better than Ubuntu
Some "work" -- tmux, Sonata, and a few other things
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
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
abijr wrote:Pnevma wrote:What irc client is that?
Would you mind sharing its conf?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
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
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
Still trying to finish the configs, but here's my new setup:
http://th04.deviantart.net/fs71/300W/f/ … yardpc.pngA large improvement over my old Gnome setup:
http://th04.deviantart.net/fs39/300W/f/ … yardpc.png
Cool, really love the colors
Where's my sig?
Offline
Cool, really love the colors
Thanks
Offline
Still trying to finish the configs, but here's my new setup:
http://th04.deviantart.net/fs71/300W/f/ … yardpc.pngA 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?
Offline
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?
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
Not much has changed (I get rather attached to themes and whatnot). Arch is turning out to be heaps better than Ubuntu
Desktop
http://omploader.org/tM2dmZwSome "work" -- tmux, Sonata, and a few other things
http://omploader.org/tM2dmZgMy 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
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
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 Looks like I have some reading to do
Offline
Offline
Offline
Still trying to finish the configs, but here's my new setup:
http://th04.deviantart.net/fs71/300W/f/ … yardpc.pngA large improvement over my old Gnome setup:
http://th04.deviantart.net/fs39/300W/f/ … yardpc.png
looks great
would you share your ncmpcpp config ?
.:[dotfiles]:.
Offline
looks great
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
Offline
Offline
which gtk theme do you use?
the life is like a action-adventure, cool graphic but a crap story
Offline
arialis111 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
http://a.imagehost.org/t/0536/Screenshot.jpg
http://a.imagehost.org/t/0973/Screenshot-2.jpg
Gnome+Compiz,conky,dockbarx
Mind sharing your conkyrc?
Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy
Offline
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?
Offline