You are not logged in.
*snip
403. Why don't you use an appropriate image host like omploader?
"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
You need to put your image files in your public dropbox folder and use the public links. No https links will be viewable by anyone here.
Smarter than a speeding bullet
My Goodreads profile
Offline
@ Rumor :
Yeah, my bad it is now on public folder with public links.
@ Daisuke_Aramaki
Omploader used to be very nice before the server migration.
After that it keeps giveing me some weird error message everytime i upload an image.
Something like : "The image ....(link) cannot be displayed, because it contains errors. "
I assume it has something to do with the resolution of the picture.
For instances anything higher than 1,920px × 1,080px and it goes nuts.
That is why i chose dropbox for its lack of ads while viewing the pictures, like ompload.
Offline
Offline
Sure
! Molokai MOD
!black
*color0 : #222222
*color8 : #454545
!red
*color1 : #F92672
*color9 : #F92672
!green
*color2 : #A6E22E
*color10: #A6E22E
!yellow
*color3 : #FD971F
*color11: #FD971F
!blue
*color4 : #4682B4
*color12: #4682B4
!magenta
*color5 : #AE81FF
*color13: #AE81FF
!cyan
*color6: #89b6e2
*color14: #46a4ff
!white
*color7 : #FFFFFF
*color15: #FFFFFF
Offline
lalw wrote:first post
Mind sharing font and Xdefaults?
sure
the font pack sgi-fonts can be found in the AUR.
URxvt.buffered: true
URxvt.background: #222222
URxvt.foreground: #899ca1
URxvt.cursorColor: #95C749
URxvt.cursorBlink: true
URxvt.font: xft:screen:pixelsize=10:antialias=false
URxvt.boldFont: xft:screen:bold:pixelsize=10:antialias=false
URxvt.geometry: 80x30
URxvt.scrollBar_right: false
URxvt.scrollBar: false
URxvt.borderLess: false
URxvt.transparent: false
URxvt.shading: 0
URxvt.inheritPixmap: false
URxvt.cursorBlink: true
URxvt.perl-ext-common: default,matcher,clipboard
URxvt.urlLauncher: /usr/bin/firefox
URxvt.matcher.button: 1
!black
*color0: #222222
*color8: #3C3C3C
!red
*color1: #CD5C5C
*color9: #D69300
!green
*color2: #95C749
*color10: #AFD700
!yellow
*color3: #D2B48C
*color11: #CDCDC1
!blue
*color4: #5F7B8A
*color12: #6B7B8A
!magenta
*color5: #CDCDB4
*color13: #CDCDB4
!cyan
*color6: #686868
*color14: #778798
!white
*color7: #FFFFFF
*color15: #FFFFFF
Offline
Offline
valvet wrote:Hi! Very nice setup! Would you mind sharing your config? I'm very much interested on how you added icons before the workspace names, your config in the status bars, and the font.
Have a look at mine (link is in signature), valvet's configs seems to be based on mine.. or we just think alike.
Basicly you just put something like "^i(/path/to/icons/icon.xbm):web", in the xmonad.hs where you define workspace names. Dzen will then parse the string and display the icons.
If you use urgencyhook you'll need a little hack for the icons to be displayed right, have a look at mine:
-- Use this instead of dzenStrip for icons to work with urgencyhook
dzenDontStripMyIcons :: String -> String
dzenDontStripMyIcons = strip [] where
strip keep x
| null x = keep
| "^i" `isPrefixOf` x = strip (keep ++"^") (drop 1 x)
| "^ca" `isPrefixOf` x = strip (keep ++"^") (drop 1 x)
| '^' == head x = strip keep (drop 1 . dropWhile (/= ')') $ x)
| otherwise = let (good,x') = span (/= '^') x
in strip (keep ++ good) x'
Icons are here: dzen icon packs, also there's a couple of extra icons at my github.
Last edited by myrkiada (2010-05-17 17:18:54)
My Configs @ Github
Offline
Have a look at mine (link is in signature), valvet's configs seems to be based on mine.. or we just think alike.
-- snip
Yes, I couldn't remember your name :-) - it's based on yours, alot lot with some addons. I've been using it ever since I got xmonad.. best.
Thanks for that.
Offline
Offline
Way to go valvet and myrkiada. Now you've got me getting ready to download xmonad and set it up.
Offline
Well thanks, and good luck! Don't hesitate to ask questions if your stuck, also check out the XMonad Hacking Thread if you haven't already done so.
My Configs @ Github
Offline
hey, what GTK theme is that?
Offline
hi dude! how did you set your terminal transparency in fluxbox? can you share .Xdefaults / your terminal's rc? (i use urxvt)
Offline
No problem, I'm glad you like it!
It's a lovely base to start out with, well done config. One question tho.. I added an autostart script, likea so:
xmonad.hs
h <- spawnPipe myStatusBar
spawn "sh /home/michael/dev/xmonad/scripts/autostart.sh"
autostart.sh
#!/bin/sh
# set keyboard language, and enable restart X
setxkbmap dk -option terminate:ctrl_alt_bksp &
# set the cursor
xsetroot -cursor_name left_ptr
# set wallpaper
sh /home/michael/.fehbg &
# launch scripts
for i in `ls /home/michael/dev/dzen2/scripts/*.sh`
do
`/bin/zsh $i &>/dev/null &`
done
But I always end up with double processes.
michael 29934 0.0 0.0 6028 1344 ? S 22:15 0:00 /bin/zsh /home/michael/dev/dzen2/scripts/lbottom.sh
michael 29936 0.0 0.0 6028 1348 ? S 22:15 0:00 /bin/zsh /home/michael/dev/dzen2/scripts/rbottom.sh
michael 29938 0.0 0.0 6028 1348 ? S 22:15 0:00 /bin/zsh /home/michael/dev/dzen2/scripts/rtop.sh
michael 29939 0.0 0.0 6080 884 ? S 22:15 0:00 /bin/zsh /home/michael/dev/dzen2/scripts/lbottom.sh
michael 29940 0.0 0.0 6080 880 ? S 22:15 0:00 /bin/zsh /home/michael/dev/dzen2/scripts/rbottom.sh
michael 29951 0.0 0.0 6048 880 ? S 22:15 0:00 /bin/zsh /home/michael/dev/dzen2/scripts/rtop.sh
How do you start yours? :-)
Offline
tehswift wrote:hi dude! how did you set your terminal transparency in fluxbox? can you share .Xdefaults / your terminal's rc? (i use urxvt)
I do like this (in .Xdefaults):
! teh transparency stuff
urxvt.transparent: false
urxvt*inheritPixmap: true
urxvt*tintColor: #1A1A1A
urxvt*shading: 80
urxvt*fading: 60
If I recall, Fluxbox can do transparency on it's own.. try google'ing that. For true transparency, you'll need xcompmgr. Again, google something like: fluxbox rxvt xcompmgr transparency is win.
Altho not "true" transparency.. you'll need something like
Offline
How do you start yours? :-)
I simply launch the scripts from .xinitrc before calling XMonad. I'm sure there are better solutions, but I've settled with the .xinitrc approach for now. That way my scripts won't multiply when recompiling/restarting XMonad.
My .xinitrc
# .xinitrc
# start some daemons
thunar --daemon &
urxvtd -q -o -f &
# etc
xsetroot -cursor_name left_ptr &
# set wallpaper
sh ~/.fehbg &
# scripts:
./archlinux/scripts/rtop.sh &
./archlinux/scripts/lbottom.sh &
./archlinux/scripts/rbottom.sh &
# launch wm
dbus-launch --exit-with-session xmonad
Last edited by myrkiada (2010-05-17 20:44:09)
My Configs @ Github
Offline
hey, what GTK theme is that?
Offline
valvet wrote:How do you start yours? :-)
That way my scripts won't multiply when recompiling/restarting XMonad.
Yes, exactly.. that's what's happening :-P - when mod+q'ing. I just change things alot, and got tired of restarting or running the scripts manually, so the autostart script when xmonad was restarted seemed like a good idea. I had thought xmonad would kill whatever it started before exiting. Probably not.
Thanks!
Offline
smurfd wrote:hey, what GTK theme is that?
Ahhh thank you! saved me countless hours on gnome-look
Offline
samuele.mattiuzzo wrote:tehswift wrote:hi dude! how did you set your terminal transparency in fluxbox? can you share .Xdefaults / your terminal's rc? (i use urxvt)
I do like this (in .Xdefaults):
! teh transparency stuff urxvt.transparent: false urxvt*inheritPixmap: true urxvt*tintColor: #1A1A1A urxvt*shading: 80 urxvt*fading: 60
If I recall, Fluxbox can do transparency on it's own.. try google'ing that. For true transparency, you'll need xcompmgr. Again, google something like: fluxbox rxvt xcompmgr transparency is win.
Altho not "true" transparency.. you'll need something like
thanks, it works
Offline
Nothing fancy —
Clean:
http://home.comcast.net/~jwjones001/snapshot1.png
Dirty:
http://home.comcast.net/~jwjones001/snapshot2.png
Heh, using Dolphin with Gnome...
Offline
nice wallpaper.
Offline