You are not logged in.
Thanks for the info guys. My friend is always buggin me to check out awesome, so I've been tempted to try one for a while now!
Offline
Thanks for the info guys. My friend is always buggin me to check out awesome, so I've been tempted to try one for a while now!
Maybe you can give xmonad a try, too.
I know the config is not that easy, but it works nice out of the box and there is a example xmonad.hs »here« and a manual to set up xmobar »here«.
If you use more than one screen, wmii expands windows over both (in default config), in xmonad on the contrary each screen get it's own workspace and you can switch however like between the screens.
_______________________________________________________________________________________________________________________________________________
Ok, here are my new screenshots, I changed from openbox to xmonad.
Just xmonad, vimperator, weechat and vim.
Last edited by muunleit (2008-11-16 21:59:46)
"The mind can make a heaven out of hell or a hell out of heaven" -- John Milton
Offline
Daisuke_Aramaki wrote:using mutze's fvwm config! just modified some stuff to make it fit with neutronium deep black from sen! all the details are on the terminal!
Hey, mind sharing the fvwm configs ? It looks great.
+1, that does look awesome. I hope to some day make my own fvwm config instead of tweaking good peoples
Offline
http://upload.snelhest.org/images/08111 … _thumb.png
DWM... Nothing else haha.
I like it, very clean. What's in your ~/.xinitrc that puts the CPU load next to the clock?
[ lamy + pilot ] [ arch64 | wmii ] [ ati + amd ]
Offline
can someone please tell me how everyone does these info scripts in terminal?
@ap_
can you share your configs and wallpaper
Some of the info scripts are here
ARCH64 | XMonad | Configs | myAURpkgs | ArchWiki Contribs | Screenies
Offline
Offline
Honken wrote:http://upload.snelhest.org/images/08111 … _thumb.png
DWM... Nothing else haha.I like it, very clean. What's in your ~/.xinitrc that puts the CPU load next to the clock?
maybe conky-cli piped into dwm; something like this in .xinitrc
conky |dwm
Love will tear us apart
Offline
Honken wrote:http://upload.snelhest.org/images/08111 … _thumb.png
DWM... Nothing else haha.I like it, very clean. What's in your ~/.xinitrc that puts the CPU load next to the clock?
Thank you. It's not CPU-load but battery level though.
maybe conky-cli piped into dwm; something like this in .xinitrc
conky |dwm
Actually no, it isn't. Never thought of Conky when I did this little script.
while true
do
echo [ `acpi | awk '{print $4}'` "|" `date +%R` ]
sleep 10
done | dwm
Probably a weird way of doing it, but I'm not used to bash-scripting.
Last edited by Honken (2008-11-17 12:06:32)
Offline
can someone please tell me how everyone does these info scripts in terminal?
i use this perl script that i got from another thread here; change it to reference the location of this logo and you're all set.
although i didn't use it in this month's screenie, it comes out pretty nice.
//github/
Offline
great! i work a lot with microarray data as well! i am almost finished and am doin some dynamic modeling these days. will submit my dissertation in the middle of next year!
"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
Daisuke_Aramaki wrote:using mutze's fvwm config! just modified some stuff to make it fit with neutronium deep black from sen! all the details are on the terminal!
Hey, mind sharing the fvwm configs ? It looks great.
sure man! will up 'em in a few mins!
"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
elmer_42 wrote:What's in your ~/.xinitrc that puts the CPU load next to the clock?
It's not CPU-load but battery level.
Ah. Well, does anybody else know how this could be done (without conky-cli)?
[ lamy + pilot ] [ arch64 | wmii ] [ ati + amd ]
Offline
can someone please tell me how everyone does these info scripts in terminal?
@ap_
can you share your configs and wallpaper
You can find the wallpaper here.
What configs would you like to have? I'm using Xfce4-terminal and Xcompmgr for transparency and shadows, and Pypanel for a panel.
Offline
Honken wrote:elmer_42 wrote:What's in your ~/.xinitrc that puts the CPU load next to the clock?
It's not CPU-load but battery level.
Ah. Well, does anybody else know how this could be done (without conky-cli)?
Here's a python script that I found somewhere and edited a bit... You should be able to pipe the output of the script to dwm.
#!/usr/bin/env python
import time
#TIMEFORMAT = "%m/%d/%y %H:%M:%S"
INTERVAL = 5
def getTimeList():
statFile = file("/proc/stat", "r")
timeList = statFile.readline().split(" ")[2:6]
statFile.close()
for i in range(len(timeList)) :
timeList[i] = int(timeList[i])
return timeList
def deltaTime(interval) :
x = getTimeList()
time.sleep(interval)
y = getTimeList()
for i in range(len(x)) :
y[i] -= x[i]
return y
if __name__ == "__main__" :
while True :
dt = deltaTime(INTERVAL)
# timeStamp = time.strftime(TIMEFORMAT)
cpuPct = 100 - (dt[len(dt) - 1] * 100.00 / sum(dt))
# print timeStamp + "\t" + str('%.4f' %cpuPct)
print str('%.0f' %cpuPct) + "%"
Offline
Offline
Where can I get this theme? It looks amazing!
Offline
os: 64bit arch
WM: openbox
Obtheme: Black-n-white modded
gtk-theme: Industrial blue black from gnome look
icons: Smokikon_v09
dock: fbpanel
wallpaper: dont have one
Apps: Conky, firefox . fbpanel, pcmanfm. xfce terminal, emesene, gmpc, mpd
Full: http://i246.photobucket.com/albums/gg10 … shot-4.png
Last edited by markp1989 (2008-11-17 23:35:11)
Desktop: E8400@4ghz - DFI Lanparty JR P45-T2RS - 4gb ddr2 800 - 30gb OCZ Vertex - Geforce 8800 GTS - 2*19" LCD
Server/Media Zotac GeForce 9300-ITX I-E - E5200 - 4gb Ram - 2* ecogreen F2 1.5tb - 1* wd green 500gb - PicoPSU 150xt - rtorrent - xbmc - ipazzport remote - 42" LCD
Offline
thanks ST.x
Offline
How do you do your weather like that in your conkyrc (that is conky correct)? Anyway, it looks really nice.
Last edited by methuselah (2008-11-18 03:16:24)
Offline
vrunner wrote:How do you do your weather like that in your conkyrc (that is conky correct)? Anyway, it looks really nice.
It's the excellent conky-mira suite by sen7 at deviantart:
http://sen7.deviantart.com/art/Conky-Mira-100078939
Offline