Outline ·
[ Standard ] ·
Linear+
Show off your Desktop !, [IMAGE HEAVY !]
|
TScocooh
|
Aug 2 2011, 05:04 PM
|
|
QUOTE(G-17 @ Aug 2 2011, 04:43 PM) There's a trick to it. You need to play with gap_x, gap_y, border_width, minimum_size, and use the voffset variable in your conky config. My conky actually has borders all around, but I use voffset to push it up a bit, and my minimum size/width is set a few pixels larger than my total screen width, and I alignment center. It gives the effect of a border at the bottom cos the other 3 corners are hidden.  ... need to play around a bit to get it right. here's my config: http://pastebin.com/93Z9wFQdKeep in mind that this is for a 1024x600 netbook screen. You'll have to adjust the size accordingly for your width (Note: the conky is actually 1 line ... dunno why the pastebin sites all separate it like that) Hope this helps. Ahh thx gonna tweak my config This post has been edited by cocooh: Aug 2 2011, 06:31 PM
|
|
|
|
|
|
TScocooh
|
Aug 2 2011, 06:38 PM
|
|
@G-17 Sorry for bothering you lot Can u post ur evilwmrc ? And whr do i put this file to ?  Thx alottt UPDATE : ive got the evilwmrc But the thing is , evilwm does not read my evilwmrc located at my ~/.evilwmrc path  Help This post has been edited by cocooh: Aug 2 2011, 06:58 PM
|
|
|
|
|
|
TScocooh
|
Aug 2 2011, 07:29 PM
|
|
QUOTE(G-17 @ Aug 2 2011, 07:27 PM) @zai Can you start evilwm or not? ... or isit starting but not recognizing your ~/.evilwmrc only. my ~./evilwmrc CODE term urxvtc mask1 mod4 mask2 mod1 altmask shift fn lime:pixelsize=8 snap 8 bw 2 fg #cccccc fc #6699cc bg #999999 #dock dzen2 Very simple, right?! =P Told you it's the most minimal WM ever. Put it in HOME as a dotfile. In your xinitrc, make sure you have a "exec evilwm"at the end. if that doesn't work, replace it with "/usr/bin/evilwm". Here's my problem I can start my evilwm but Starting with .xinitrc = evilwm will logged in as root instead of my own account If i start with Xsessions = everything is fine but it does not recognize my ~/.evilwmrc  HELP
|
|
|
|
|
|
TScocooh
|
Aug 2 2011, 07:56 PM
|
|
Update : Ive fixed the issue  Im really really got problem , didn notice that evilwm 1.1.0 supports evilwmrc but not the previous versions  Time to mod mod mod Thx G-17  Added on August 2, 2011, 9:20 pm Final product of my new EvilWm Simply wicked  Enlarged version hereThis post has been edited by cocooh: Aug 2 2011, 09:20 PM
|
|
|
|
|
|
TScocooh
|
Aug 2 2011, 10:50 PM
|
|
QUOTE(G-17 @ Aug 2 2011, 10:47 PM) @Zai You're enjoying yourself, aren't you?  BTW, you're using bash, right? if you want colored man pages, add this bit to the end of your ~/.bashrc CODE #Coloured Man Pages export LESS_TERMCAP_mb=$'\E[01;31m' export LESS_TERMCAP_md=$'\E[01;31m' export LESS_TERMCAP_me=$'\E[0m' export LESS_TERMCAP_se=$'\E[0m' export LESS_TERMCAP_so=$'\E[01;44;33m' export LESS_TERMCAP_ue=$'\E[0m' export LESS_TERMCAP_us=$'\E[01;32m' fi
Weird , it does not work Btw , i wanna ask , how did u do that terminal color chart without typing any command to invoke it ?
|
|
|
|
|
|
TScocooh
|
Aug 2 2011, 11:13 PM
|
|
I used the bashrc uve uploaded » Click to show Spoiler - click again to hide... « CODE # ~/.bashrc: executed by bash(1) for non-login shells. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # for examples
# If not running interactively, don't do anything [ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options # don't overwrite GNU Midnight Commander's setting of `ignorespace'. HISTCONTROL=$HISTCONTROL${HISTCONTROL+:}ignoredups # ... or force ignoredups and ignorespace HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
# check the window size after each command and, if necessary, # update the values of LINES and COLUMNS. shopt -s checkwinsize
# make less more friendly for non-text input files, see lesspipe(1) #[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below) if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then debian_chroot=$(cat /etc/debian_chroot) fi
# set a fancy prompt (non-color, unless we know we "want" color) case "$TERM" in xterm-color) color_prompt=yes;; esac
# uncomment for a colored prompt, if the terminal has the capability; turned # off by default to not distract the user: the focus in a terminal window # should be on the output of commands, not on the prompt force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then # We have color support; assume it's compliant with Ecma-48 # (ISO/IEC-6429). (Lack of such support is extremely rare, and such # a case would tend to support setf rather than setaf.) color_prompt=yes else color_prompt= fi fi
# ANSI color codes RS="\[\033[0m\]" # reset HC="\[\033[1m\]" # hicolor UL="\[\033[4m\]" # underline INV="\[\033[7m\]" # inverse background and foreground FBLK="\[\033[30m\]" # foreground black FRED="\[\033[31m\]" # foreground red FGRN="\[\033[32m\]" # foreground green FYEL="\[\033[33m\]" # foreground yellow FBLE="\[\033[34m\]" # foreground blue FMAG="\[\033[35m\]" # foreground magenta FCYN="\[\033[36m\]" # foreground cyan FWHT="\[\033[37m\]" # foreground white BBLK="\[\033[40m\]" # background black BRED="\[\033[41m\]" # background red BGRN="\[\033[42m\]" # background green BYEL="\[\033[43m\]" # background yellow BBLE="\[\033[44m\]" # background blue BMAG="\[\033[45m\]" # background magenta BCYN="\[\033[46m\]" # background cyan BWHT="\[\033[47m\]" # background white
if [ "$color_prompt" = yes ]; then PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' else PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' fi unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir case "$TERM" in xterm*|rxvt*) PS1="$FRED┌─$HC$FBLK WilleoSoeurs $HC$FBLK says $HC$FYEL $RS $HC$FMAG\w $RS\n$FRED └─ $RS$FWHT" PS2="$FRED> $RS$HC$FMAG" ;; *) ;; esac
# enable color support of ls and also add handy aliases if [ -x /usr/bin/dircolors ]; then test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" alias ls='ls --color=auto' #alias dir='dir --color=auto' #alias vdir='vdir --color=auto'
#alias grep='grep --color=auto' #alias fgrep='fgrep --color=auto' #alias egrep='egrep --color=auto' fi
# some more ls aliases #alias ll='ls -l' #alias la='ls -A' #alias l='ls -CF'
# Alias definitions. # You may want to put all your additions into a separate file like # ~/.bash_aliases, instead of adding them here directly. # See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then . ~/.bash_aliases fi
#Coloured Man Pages export LESS_TERMCAP_mb=$'\E[01;31m' export LESS_TERMCAP_md=$'\E[01;31m' export LESS_TERMCAP_me=$'\E[0m' export LESS_TERMCAP_se=$'\E[0m' export LESS_TERMCAP_so=$'\E[01;44;33m' export LESS_TERMCAP_ue=$'\E[0m' export LESS_TERMCAP_us=$'\E[01;32m'
# enable programmable completion features (you don't need to enable # this, if it's already enabled in /etc/bash.bashrc and /etc/profile # sources /etc/bash.bashrc). if [ -f /etc/bash_completion ] && ! shopt -oq posix; then . /etc/bash_completion fi
[/QUOTE]
|
|
|
|
|
|
TScocooh
|
Aug 2 2011, 11:23 PM
|
|
QUOTE(G-17 @ Aug 2 2011, 11:19 PM) @Zai Hmm ... strange. Dunno why it doesn't work on yours. Try replacing colored man pages part with this; CODE export LESS_TERMCAP_mb=$'\E[01;31m' # begin blinking export LESS_TERMCAP_md=$'\E[01;38;5;74m' # begin bold export LESS_TERMCAP_me=$'\E[0m' # end mode export LESS_TERMCAP_se=$'\E[0m' # end standout-mode export LESS_TERMCAP_so=$'\E[38;5;246m' # begin standout-mode - info box export LESS_TERMCAP_ue=$'\E[0m' # end underline export LESS_TERMCAP_us=$'\E[04;38;5;146m' # begin underline I gotta sleep ... continue after work tomorrow. Good night man. Weird , doesn work as well
|
|
|
|
|
|
TScocooh
|
Aug 3 2011, 02:16 AM
|
|
@G-17  Erm , was wandering whether u still have the xcompmgr's settings for this This post has been edited by cocooh: Aug 3 2011, 03:08 PM
|
|
|
|
|
|
TScocooh
|
Aug 3 2011, 09:20 PM
|
|
QUOTE(G-17 @ Aug 3 2011, 06:37 PM) @Zai Can't remember. Try something like "xcompmgr -cCfF -t-11 -l-12 -r8.8 -o1 -D4" @Patent Zipped a few for ya = http://ompldr.org/vOXFrOQ/Term-Scripts.zipSome are mine, some were made by friends, and some I found online in various forums. Put them in a directory in your $PATH (usually ~/bin in my case) or just in Home, make em executable (chmod +x) and run them from a terminal. They're configured for Urxvt and Xterm, so I'm not quite sure if they'll display correctly in other terminal emulators. OMG thx for the xcompmgr settings  looks nice
|
|
|
|
|
|
TScocooh
|
Aug 4 2011, 07:25 PM
|
|
QUOTE(monsh @ Aug 4 2011, 06:13 PM) what are these things u guys doing ? cant even stand any bit of it man . and yet, u all having fun of it . im all left out T_T Hmm , we are doing it the minimal way We are using Tiling Manager , its abit different from the full blown Gnome or KDE , its just "simple"  Everything depends on the mouse and the keybindings U might wanna try it first before going fully with it Once you get a hang of it , you'll LOVE it Back to the topic   Click to enlarge
|
|
|
|
|
|
TScocooh
|
Aug 5 2011, 09:12 PM
|
|
QUOTE(G-17 @ Aug 5 2011, 08:54 PM) What is RatWM? O_o ... I've never come across it. Do you mean Ratpoison? And NO, I don't use ALL  ... there are some I haven't had the time to try in-depth like StumpWM (lisp isn't my fave language anyway) and some I won't ever go near again (Awesome... seriously, who codes a WM in Lua?!) and some that just don't work right for my needs (i3). Tbh, I'm pretty much settled on Scrot and Dwm for my tiling and Openbox, Cwm and EvilWM for my floating needs, with the ocassional excursion to maybe PekWM. One WM I always wanted to try was WMFS. It's absolutely wonderful in use, and can be configured with almost infinite possibilities. Reason I don't run it right now is because it displayed higher CPU load cycles than normal when I last tried, and had a habit of leaking memory and forcing the swap. It's still on my -to-do list, though. Try it if you like. No official debs but the main site has instructions for getting a PPA up or pulling from Github. Zai, EvilWM and Openbox are not Tiling window managers. They're still stacking/floating types, FYI  Added on August 5, 2011, 8:58 pmBack on topic, Posting a scrot of Subtle WM from a few months back cos Zai was curious.  ...and yes, I actually listen to Prince ... embarrassing but true >_< OMG  Love it Gonna try it in these few days
|
|
|
|
|
|
TScocooh
|
Aug 7 2011, 07:11 AM
|
|
QUOTE(monsh @ Aug 7 2011, 06:53 AM) wallie please cocooh !  I tot uve downloaded it ? Ive posted the link b4 http://ompldr.org/vOXBhbg/wallpaper-475682.jpgAnd back to the topic Archie + Subtle (modded abit , based on someones  )
|
|
|
|
|
|
TScocooh
|
Aug 7 2011, 08:16 PM
|
|
QUOTE(G-17 @ Aug 7 2011, 05:42 PM) @Zai huh? ... Arch standard repos still only have 2.6.39? O_o Anyways, what's your opinion on Arch? Good, no?  Ahh i was wondering that too Arch = simple Uses only 2.2G on overall installation Performance wise = Pacman is faster than apt-get But subtle loads abit slower But overall = ITS WORTH IT Troubleshooted over 12 hours and now its complete
|
|
|
|
|
|
TScocooh
|
Aug 7 2011, 08:38 PM
|
|
QUOTE(G-17 @ Aug 7 2011, 08:28 PM) ^ Yes, Pacman is faster. PArt of it is down to how the packages are handled and part of it is down to security (Pacman does not have signed packages). You can get apt-fast for Apt, which speeds it up to some extent. Colored Pacman output is nice, though.  Debian can get much smaller if you use Smxi and related for system maintenance, btw. Ahh One thing for sure , Arch is bleeding edge and Debian is as stable as rock
|
|
|
|
|
|
TScocooh
|
Aug 8 2011, 02:09 PM
|
|
WMFS looks interesting with its layout Might wanna try it when i have time for it  Back to topic : Evolution of my subtle  » Click to show Spoiler - click again to hide... «
|
|
|
|
|
|
TScocooh
|
Aug 9 2011, 12:47 PM
|
|
Another fresh install of Arch Linux on another partition » Click to show Spoiler - click again to hide... «  Running smoothly
|
|
|
|
|
|
TScocooh
|
Aug 9 2011, 01:29 PM
|
|
QUOTE(Patent @ Aug 9 2011, 01:14 PM) ^What WM are you using cocooh ? Its KDE Lucky i installed this on another partition , pulls quite alot of deps but its much responsive than Gnome 3 Gonna dump it soon and move on to another DE/WM
|
|
|
|
|
|
TScocooh
|
Aug 9 2011, 05:57 PM
|
|
QUOTE(G-17 @ Aug 9 2011, 05:43 PM) CWM, forked from my OpenBSD setup to work on Linux.  Photo & background from http://www.metisse-motorcycles.com/Superb Gonna switch back to my subtle after playing with my KDE
|
|
|
|
|
|
TScocooh
|
Aug 9 2011, 06:41 PM
|
|
QUOTE(G-17 @ Aug 9 2011, 06:02 PM) ^CWM-git is in AUR, btw, though it's not very well maintained and is sorta broken in behavior. Best is to fork it yourself if you know how to code/edit C. CatWM or Calmwm  noted , gonna add it into my "journey" list This post has been edited by cocooh: Aug 9 2011, 06:43 PM
|
|
|
|
|