You are not logged in.
Offline
Offline
Offline
Testing my new little crazy layout for dwm
http://ompldr.org/tYjVkeg
(click to view properly)
WOW this is crazy man!
Fibonacci +
This patch is for >> DWM Hackers Unite! Share (or request) dwm patches.
#########
My first capture of my *ucking windows
Blackbox Windows
more info http://bb4win.sourceforge.net/bblean/
Last edited by ivoarch (2011-11-06 12:28:27)
Offline
wallpaper
Openbox (carbon theme)
tint2, cairo-dock, cairo-compmgr, urxvt
Conky - lua, rc, gmail
Thunar - Faenza icons, BSM Simple Dark, Vanilla-DMZ-AA
age, hypnotoad
//fixed links
Last edited by herangr (2012-01-30 12:35:24)
Offline
Offline
clean
http://imgupload.sk/images/39181085937803923891_thumb.jpg"dirty"
http://imgupload.sk/images/23723445202349413700_thumb.pngwallpaper
Openbox (carbon theme)
tint2, cairo-dock, cairo-compmgr, urxvt (prompt)
Conky - lua (i can't find source, but its somewhere on forum), rc
Thunar - Faenza icons, BSM Simple Dark, Vanilla-DMZ-AA
Can you share your frog and age script?
Offline
Been a while for me:
http://ompldr.org/tYjU4ZQ http://ompldr.org/tYjU4Zw
I like the look of that
Offline
Offline
lolilolicon wrote:Testing my new little crazy layout for dwm
http://ompldr.org/tYjVkeg
(click to view properly)WOW this is crazy man!
Fibonacci +This patch is for >> DWM Hackers Unite! Share (or request) dwm patches.
Here you go:
https://bbs.archlinux.org/viewtopic.php … 8#p1013098
This silver ladybug at line 28...
Offline
Some crunchbangers inspired me to do a matrix-esque theme:
http://ubuntuone.com/40mPKOghTildjsBPpL3Xgb
font
That's herbstluftwm, by the way.
Colorscheme?
Offline
lolilolicon wrote:Testing my new little crazy layout for dwm
http://ompldr.org/tYjVkeg
(click to view properly)WOW this is crazy man!
Fibonacci +This patch is for >> DWM Hackers Unite! Share (or request) dwm patches.
#########
My first capture of my *ucking windows
Blackbox Windows
http://ompldr.org/tYjVpeQmore info http://bb4win.sourceforge.net/bblean/
The news from April 2010 on bbleans homepage makes me sad.
Offline
Some crunchbangers inspired me to do a matrix-esque theme:
http://ubuntuone.com/40mPKOghTildjsBPpL3Xgb
font
That's herbstluftwm, by the way.
I like it
Offline
herangr wrote:clean
http://imgupload.sk/images/39181085937803923891_thumb.jpg"dirty"
http://imgupload.sk/images/23723445202349413700_thumb.pngwallpaper
Openbox (carbon theme)
tint2, cairo-dock, cairo-compmgr, urxvt (prompt)
Conky - lua (i can't find source, but its somewhere on forum), rc
Thunar - Faenza icons, BSM Simple Dark, Vanilla-DMZ-AACan you share your frog and age script?
Hypnotoad: https://bbs.archlinux.org/viewtopic.php … 05#p642805
Age: in this topic https://bbs.archlinux.org/viewtopic.php?id=38642&p=7
Offline
ninjaaron wrote:Some crunchbangers inspired me to do a matrix-esque theme:
http://ubuntuone.com/40mPKOghTildjsBPpL3Xgb
font
That's herbstluftwm, by the way.Colorscheme?
That's a complicated question. Basically, I did this script. Terminal colors are set by redefining the terminal launch commands in the script, so the colors are all there. The first terminal command keeps most of my default colors (for better syntax highlighting, etc.) and only changes the background, foreground, and black. The second makes it a completely monochrome black/green terminal. The script also restarts conky with another config script. I also have a custom vim colorscheme activated that has this stuff in it:
hi Constant term=underline ctermfg=2 guifg=#c00058
hi Special term=bold ctermfg=10 guifg=SlateBlue
hi Identifier term=underline cterm=bold ctermfg=2 guifg=DarkCyan
hi Statement term=bold ctermfg=15 gui=bold guifg=Brown
hi PreProc term=underline ctermfg=10 guifg=Magenta3
hi Type term=underline ctermfg=2 gui=bold guifg=SeaGreen
hi Ignore cterm=bold ctermfg=7 guifg=bg
hi Error term=reverse cterm=bold ctermfg=7 ctermbg=1 gui=bold guifg=White guibg=Red
hi Todo term=standout ctermfg=0 ctermbg=3 guifg=Blue guibg=Yellow
(don't ask me about the gui colors. It's for gvim, and I never use that, but this was modified from another theme, and I haven't touched them).
I also did a custom gtk theme with the same colors as I have in the terminal, and the icons are ACYL.
The main colors you actually need to know about are these:
Backgorund: #040404
Foreground: #5ec95e
Highlight: #aaffaa
Color0 (Black): #337733
There is also some white here and there.
I like it
Thanks!
Last edited by ninjaaron (2011-11-06 17:44:20)
Offline
My first capture of my *ucking windows
Blackbox Windows
http://ompldr.org/tYjVpeQmore info http://bb4win.sourceforge.net/bblean/
The news from April 2010 on bbleans homepage makes me sad.
In memory of Malcolm Wagner (unkamunka)
RIP
Offline
clean
http://imgupload.sk/images/39181085937803923891_thumb.jpg"dirty"
http://imgupload.sk/images/23723445202349413700_thumb.pngwallpaper
Openbox (carbon theme)
tint2, cairo-dock, cairo-compmgr, urxvt (prompt)
Conky - lua (i can't find source, but its somewhere on forum), rc
Thunar - Faenza icons, BSM Simple Dark, Vanilla-DMZ-AA
Sweet! How did you get more than 2 colors (bold & underline) in your man(1) output?
Offline
Sweet! How did you get more than 2 colors (bold & underline) in your man(1) output?
in .bashrc
man() {
env \
LESS_TERMCAP_mb=$(printf "\e[0;31m") \
LESS_TERMCAP_md=$(printf "\e[0;34m") \
LESS_TERMCAP_me=$(printf "\e[0;32m") \
LESS_TERMCAP_se=$(printf "\e[0m") \
LESS_TERMCAP_so=$(printf "\e[0;44;30m") \
LESS_TERMCAP_ue=$(printf "\e[0;36m") \
LESS_TERMCAP_us=$(printf "\e[0;33m") \
man "$@"
}
notes
_mb => red
_md => blue
_me => green
_se => white
_so => blue background, black text
_dark => green
_us => oragne
also take a look here https://wiki.archlinux.org/index.php/Ma … _man_pages
Last edited by herangr (2011-11-06 19:33:50)
Offline
Offline
What I am looking at looks cool. What the crap is it, and how many monitors are here?
Offline
Well... vim.
The colorscheme is Neverland.
Additional syntax hilight rules for perl and vim are used.
The filelistings in two of the vims is actually a filemanager. It's called vidir and it presents you with a list of files in vim - use regular vimfu on the lines to rename/delete/move/etc the files.
Also in use is vimpager for reading documentation and manpages.
Offline
Do You feel comfortable working withought any status bar?
Offline
Here's my KDE. I found a Kwin tweak that removes window decorations when you maximize windows, it's pretty sweet and makes for a very minimal Firefox. Oh and yes, I also started using my Deviantart account. I've had it for two years now but until recently, I only used it to ask details. By the way, it's Kubuntu now.
If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres
Offline