You are not logged in.
So this is my screenshoot, currently using Cinnamon , switched from KDE recently.
Plz resize img according to Posting Guidelines
Offline
So this is my screenshoot, currently using Cinnamon , switched from KDE recently.
Read screenshot posting rules!
Offline
I'm working on my Desktop, but no matter what I do, somehow it ain't getting better atm, especially with wallpaper I got a major problem.^^
So far, I replaced the razor-panel by bmpanel2 and created an oldschool kind of App-Menu with a simple launcher and compiz-boxmenu and edited conky. Windows ain't too spectacular, emerald is just a small black frame without any buttons...might even stick with that...
http://fc09.deviantart.net/fs70/f/2012/064/d/9/bildschirmfoto1_by_desm0tes-d4rstcs.png
Razor-QT with Compiz again.
Was wondering if you could share that wallpaper.
- [ My Blog ] | [ AUR Packages ] | [ My deviantART ] | [ screenFetch ] | [ SilverIRC ] -
Offline
I'm working on my Desktop, but no matter what I do, somehow it ain't getting better atm, especially with wallpaper I got a major problem.^^
So far, I replaced the razor-panel by bmpanel2 and created an oldschool kind of App-Menu with a simple launcher and compiz-boxmenu and edited conky. Windows ain't too spectacular, emerald is just a small black frame without any buttons...might even stick with that...
http://fc09.deviantart.net/fs70/f/2012/064/d/9/bildschirmfoto1_by_desm0tes-d4rstcs.png
Razor-QT with Compiz again.
Nice wallpaper <3, could you share it?
edit: ohshi- I just read someone else asked for it already, haha~
Last edited by asdf-chan (2012-03-04 20:04:52)
Offline
DWM (main desktop)
-pertag
-push
-single-window-no-border
-float-border-color
In my conky_stat I have used a little script to retrive my external IP through lynx. Is there another, more efficient way?
Configs:
conkyrc_stat
own_window yes
own_window_type override
own_window_colour 000000
own_window_transparent yes
own_window_hints undecorated below sticky skip_taskbar skip_pager
double_buffer yes
cpu_avg_samples 1
net_avg_samples 1
use_xft no
xftfont Terminus:size=1
update_interval 1
minimum_size 1280 10
maximum_width 540
border_margin 6
border_width 1
draw_outline no
default_color white
alignment bottom_left
use_spacer right
no_buffers yes
uppercase no
gap_x 0
gap_y -695
TEXT
${color #00770f}Kernel: ${color white}$kernel ${color #00770f}Updates: ${color white}${texeci 10800 /etc/cron.hourly/update.sh}
${color #00770f}${hr 2}
${color #00770f}Network:${color white} ${wireless_essid wlan0}
${color #00770f}LAN: ${color white}${addr wlan0} ${color #00770f}/root: ${color lightgrey}${fs_used /}${color #00770f} / ${color white}${fs_size /} ${color #00770f}CPU: ${color white}${cpu}% ${color #00770f}of ${color white}${freq}Mhz${color #00770f}
${color #00770f}X_IP: ${color white}${texeci 10800 ~/conky/get_ip} ${color #00770f}/home: ${color lightgrey}${fs_used /home}${color #00770f} / ${color white}${fs_size /home} ${color #00770f}RAM: ${color white}$mem${color #00770f}/${color white}${memmax}
conkyrc_stat's get_ip script.
lynx -dump -hiddenlinks=ignore -nolist http://checkip.dyndns.org:8245/ | awk '{ print $4 }' | sed '/^$/d; s/^[ ]*//g; s/[ ]*$//g'
conkyrc (for status bar pipe)
out_to_console
out_to_x no
background no
update_interval 1
total_run_times 0
use_spacer none
TEXT
${cpu} ${mem} ${memperc}
dwm starter script
#!/bin/bash
feh --bg-scale /home/n1x4/images/Linux_Hi_Tec.jpg &
conky -c /home/n1x4/.conkyrc_stat -x 0 -y 0 -d &
conky -d | while read -r
do
C0=($REPLY)
C1="${C0[0]}"
C2="${C0[1]}"
C3="${C0[2]}"
C4=`date +"%a %b %d - %r"`
xsetroot -name ":: [ CPU: ${C1} % ] :: [ RAM: ${C3} % ] :: $C4 ::"
sleep 1s
done &
xset +fp /usr/share/fonts/local
xset fp rehash
xbindkeys &
wmname LG3D
exec dwm
DWM (laptop)
-push
-pertag
-urgentcolor
-swapfocus
-single-window-no-border
-gaplessgrid
Dirty laptop (pretty much the same as desktop, I use them the same anyways)
All configs are about the same just moved some code around a bit..
Anybody have oter any ideas on what to do to either of them? Aside from change the wallpapers..lol
||github||
Offline
In my conky_stat I have used a little script to retrive my external IP through lynx. Is there another, more efficient way?
$(curl -s http://whatismyip.org/)
Offline
n1x4 wrote:In my conky_stat I have used a little script to retrive my external IP through lynx. Is there another, more efficient way?
$(curl -s http://whatismyip.org/)
Thanks a bunch man!! That is better.. Sadly it gives me the readout "Too frequent!" after a couple seconds. Conky updates every second (kind of need it to).. Any thoughts other than raising the interval?
||github||
Offline
You could put it in an external script and have it run once every ~10 minutes (your IP address is not going to change that much is it?) with a sleep call. Conky can then ping the script every second, but you only bother whatismyip.org when you need to...
Offline
I use this script
#!/bin/sh
wget -q -O - checkip.dyndns.org|sed -e 's/.*Current IP Address: //' -e 's/<.*$//'
Offline
Offline
@n1x4
Can share float-border-color patch?
http://dwm.suckless.org/patches/float_border_color I guess.
Could you post your .Xresourcess, please?
It´s the colors you want, right?
URxvt.foreground: #EFEFEF
URxvt.background: #1A1A1A
URxvt.borderColor: #1A1A1A
URxvt.colorBD: #FFFFFF
URxvt.colorIT: #FFFFFF
URxvt.colorRV: #333333
URxvt.colorUL: #FF8F00
URxvt.cursorColor2: #636363
URxvt.cursorColor: #A6E22E
URxvt.pointerColor2: #444444
URxvt.pointerColor: #252525
URxvt.underlineColor: #151515
URxvt.color0: #494747
URxvt.color1: #D6156C
URxvt.color2: #CCF390
URxvt.color3: #FE8E00
URxvt.color4: #24C0EB
URxvt.color5: #f73574
URxvt.color6: #FF5825
URxvt.color7: #666666
URxvt.color8: #4E4E4E
URxvt.color9: #ff6767
URxvt.color10: #FF00EC
URxvt.color11: #FEB345
URxvt.color12: #5CCEEE
URxvt.color13: #b50077
URxvt.color14: #AED600
URxvt.color15: #dedede
Last edited by kaptenen (2012-03-05 13:16:47)
Offline
It´s the colors you want, right?
URxvt.foreground: #EFEFEF URxvt.background: #1A1A1A URxvt.borderColor: #1A1A1A URxvt.colorBD: #FFFFFF URxvt.colorIT: #FFFFFF URxvt.colorRV: #333333 URxvt.colorUL: #FF8F00 URxvt.cursorColor2: #636363 URxvt.cursorColor: #A6E22E URxvt.pointerColor2: #444444 URxvt.pointerColor: #252525 URxvt.underlineColor: #151515 URxvt.color0: #494747 URxvt.color1: #D6156C URxvt.color2: #CCF390 URxvt.color3: #FE8E00 URxvt.color4: #24C0EB URxvt.color5: #f73574 URxvt.color6: #FF5825 URxvt.color7: #666666 URxvt.color8: #4E4E4E URxvt.color9: #ff6767 URxvt.color10: #FF00EC URxvt.color11: #FEB345 URxvt.color12: #5CCEEE URxvt.color13: #b50077 URxvt.color14: #AED600 URxvt.color15: #dedede
Yes, thank you!
Offline
Archlinux Solarized with Gray backgrounds.
Offline
Not a good day for screenfetch. Bizarrely wanted root privileges and got both the icon and gtk themes wrong as well as the font. GTK is "A New Hope" and the icon theme is Clarity. The font is HandelGotDlig.
Last edited by b9anders (2012-03-05 22:37:23)
Offline
Been lurking this forum for quite a while but i've been happy windows user until a few week back when i got my second monitor, unhappy with windows way of handeling multiple monitors, i switched to debian with awesome (that i've seen in screenshots at this forum) but was not at all happy with the way awesome managed the multiple screens either and debian just pulled so much crap behind my back that i felt it archived complexity thru simplicety. So i decided to try out arch+xmonad and from what iv'e read on archwiki and from that and what i previusly have read on this forum, i managed to set my system up exactly as i wanted it to be and it was fun and easy unlike thos other distros i tried in between. Also thansk to the ppl at this forum for posting confs and stuff that i've burroved stuff from, mostly anrxc for his awesome theme.
Offline
Switched back ot DWM. Practically vanilla with just bottomstack: http://ompldr.org/vY3k0ag/desktop.png
Offline
Clean
http://ompldr.org/tY3kyegNot a good day for screenfetch. Bizarrely wanted root privileges and got both the icon and gtk themes wrong as well as the font. GTK is "A New Hope" and the icon theme is Clarity. The font is HandelGotDlig.
Woah, really? That's...odd. Huh. I'll look into it.
- [ My Blog ] | [ AUR Packages ] | [ My deviantART ] | [ screenFetch ] | [ SilverIRC ] -
Offline
Offline
Xmonad
Clean
http://ompldr.org/tY3kyNw
Busy
http://ompldr.org/tY3kyNABeen lurking this forum for quite a while but i've been happy windows user until a few week back when i got my second monitor, unhappy with windows way of handeling multiple monitors, i switched to debian with awesome (that i've seen in screenshots at this forum) but was not at all happy with the way awesome managed the multiple screens either and debian just pulled so much crap behind my back that i felt it archived complexity thru simplicety. So i decided to try out arch+xmonad and from what iv'e read on archwiki and from that and what i previusly have read on this forum, i managed to set my system up exactly as i wanted it to be and it was fun and easy unlike thos other distros i tried in between. Also thansk to the ppl at this forum for posting confs and stuff that i've burroved stuff from, mostly anrxc for his awesome theme.
nice, mind share config ???
Offline