You are not logged in.

#51 2010-11-02 20:39:54

valvet
Member
From: Denmark
Registered: 2009-06-06
Posts: 147

Re: November 2010 Screenshots

saline wrote:
valvet wrote:

Oh, wrong paste thingie then.. one sec. Your paste can be seen here: http://pastebin.ca/1979725

Could you share your vim colorscheme?

http://github.com/milomouse/dotfiles/tr … im/colors/ cottonmouse :-). Beautiful.

Offline

#52 2010-11-02 20:45:15

saline
Member
Registered: 2010-02-20
Posts: 86

Re: November 2010 Screenshots

valvet wrote:
saline wrote:
valvet wrote:

Oh, wrong paste thingie then.. one sec. Your paste can be seen here: http://pastebin.ca/1979725

Could you share your vim colorscheme?

http://github.com/milomouse/dotfiles/tr … im/colors/ cottonmouse :-). Beautiful.

It is beautiful. Thank you!

Offline

#53 2010-11-02 21:27:03

dunz0r
Member
From: Sweden
Registered: 2009-03-30
Posts: 258
Website

Re: November 2010 Screenshots

Dirty:
2010-11-02-2224-november-dirty-scrot-thumb.png
Clean:
2010-11-02-2220-november-clean-scrot-thumb.png

Last edited by dunz0r (2010-11-03 06:14:32)


RTFM or GTFO
hax0r.se

Offline

#54 2010-11-02 21:35:49

valvet
Member
From: Denmark
Registered: 2009-06-06
Posts: 147

Re: November 2010 Screenshots

dunz0r wrote:

Dirty:
..

First image is linking wrong.. should probably be http://hax0r.se/files/img/screenshots/2 … -scrot.png instead of 2219 :-). Looks good tho!

Offline

#55 2010-11-03 04:26:52

toorlv
Member
Registered: 2009-11-01
Posts: 65

Re: November 2010 Screenshots

valvet wrote:

Oh, wrong paste thingie then.. one sec. Your paste can be seen here: http://pastebin.ca/1979725

Can you provide your bashrc?

Offline

#56 2010-11-03 06:14:55

dunz0r
Member
From: Sweden
Registered: 2009-03-30
Posts: 258
Website

Re: November 2010 Screenshots

valvet wrote:
dunz0r wrote:

Dirty:
..

First image is linking wrong.. should probably be http://hax0r.se/files/img/screenshots/2 … -scrot.png instead of 2219 :-). Looks good tho!

Thanks, fixed it smile


RTFM or GTFO
hax0r.se

Offline

#57 2010-11-03 09:21:01

valvet
Member
From: Denmark
Registered: 2009-06-06
Posts: 147

Re: November 2010 Screenshots

toorlv wrote:
valvet wrote:

Oh, wrong paste thingie then.. one sec. Your paste can be seen here: http://pastebin.ca/1979725

Can you provide your bashrc?

bashrc

# check for an interactive session
[ -z "$PS1" ] && return

# startx when logging into tty1
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
    . startx
    logout
fi

shopt -s cdable_vars        # if cd arg is not valid, assumes its a var defining a dir
shopt -s cdspell            # autocorrects cd misspellings
shopt -s checkwinsize       # update the value of LINES and COLUMNS after each command if altered
shopt -s cmdhist            # save multi-line commands in history as single line
shopt -s dotglob            # include dotfiles in pathname expansion
shopt -s expand_aliases     # expand aliases
shopt -s extglob            # enable extended pattern-matching features
shopt -s histappend         # append to (not overwrite) the history file
shopt -s hostcomplete       # attempt hostname expansion when @ is at the beginning of a word
shopt -s nocaseglob         # pathname expansion will be treated as case-insensitive

shopt -s no_empty_cmd_completion        # ???
shopt -u promptvars                     # ???

export LC_COLLATE="en_DK.utf8"

HISTIGNORE='\&:fg:bg:ls:pwd:cd ..:cd ~-:cd -:cd:jobs:set -x:ls -l:ls -l'
HISTIGNORE=${HISTIGNORE}':%1:%2:shutdown*'
export HISTIGNORE

# prompt
PS1='\u@\h \w> \a'

# show [SH] when entering shell in VIM
if [ $VIM ]; then
    export PS1='[SH] \u@\h \w> \a'
fi

# exports
export HISTCONTROL=ignoredups
export HISTCONTROL=ignoreboth
export GREP_COLOR="0;32"
export MOZ_DISABLE_PANGO=1

export PATH=$PATH:/home/michael/bin
export OOO_FORCE_DESKTOP=gnome
export BROWSER="chromium '%s' &"

if [ -n "$SSH_CONNECTION" ] && [ -z "$SCREEN_EXIST" ]; then
    export SCREEN_EXIST=1
    screen -DR
fi

# load aliases
if [ -f .bash_aliases ]; then
    . .bash_aliases
fi

# check the window size after each command and, if necessary
# update the values of LINES and COLUMNS
shopt -s checkwinsize

# creates an archive from given directory
mktar() { tar cvf  "${1%%/}.tar"     "${1%%/}/"; }
mktgz() { tar cvzf "${1%%/}.tar.gz"  "${1%%/}/"; }
mktbz() { tar cvjf "${1%%/}.tar.bz2" "${1%%/}/"; }

start() { sudo /etc/rc.d/$1 start; }
stop() { sudo /etc/rc.d/$1 stop; }
restart() { sudo /etc/rc.d/$1 restart; }

# calculate
calc() { 
    echo "$*" | bc;
}

# google define
function define() {
  local LNG=$(echo $LANG | cut -d '_' -f 1)
  local CHARSET=$(echo $LANG | cut -d '.' -f 2)
  lynx -accept_all_cookies -dump -hiddenlinks=ignore -nonumbers -assume_charset="$CHARSET" -display_charset="$CHARSET" "http://www.google.com/search?hl=${LNG}&q=define%3A+${1}&btnG=Google+Search" | grep -m 5 -C 2 -A 5 -w "*" > /tmp/deleteme
  if [ ! -s /tmp/deleteme ]; then
    echo "Sorry, google doesn't know this one..."
  else
    cat /tmp/deleteme | grep -v Search
    echo ""
  fi
  rm -f /tmp/deleteme
}

# http://wiki.archlinux.org/index.php/Core_Utilities
ext() {
  local e=0 i c
  for i; do
    if [[ -f $i && -r $i ]]; then
        c=''
        case $i in
          *.t@(gz|lz|xz|b@(2|z?(2))|a@(z|r?(.@(Z|bz?(2)|gz|lzma|xz)))))
                 c='bsdtar xvf' ;;
          *.7z)  c='7z x'       ;;
          *.Z)   c='uncompress' ;;
          *.bz2) c='bunzip2'    ;;
          *.exe) c='cabextract' ;;
          *.gz)  c='gunzip'     ;;
          *.rar) c='unrar x'    ;;
          *.xz)  c='unxz'       ;;
          *.zip) c='unzip'      ;;
          *)     echo "$0: cannot extract \`$i': Unrecognized file extension" >&2; e=1 ;;
        esac
        [[ $c ]] && command $c "$i"
    else
        echo "$0: cannot extract \`$i': File is unreadable" >&2; e=2
    fi
  done
  return $e
}

bash_aliases

# aliases
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias todo='vim ~/todo'
alias cmds='vim ~/commands'
alias rbik='vim ~/rubiks'
alias reboot='sudo reboot'
alias shutdown='sudo shutdown -h now'
alias pacman='sudo pacman'
alias xm='vim ~/.xmonad/xmonad.hs'
alias bp='echo -e "\a"'
alias im='vim'
alias ls='ls --color=auto'
alias ll='ls -l'
alias la='ls -A'
alias cp='cp -i'
alias mv='mv -i'
alias rm='rm -i'
alias mkdir='mkdir -p -v'
alias df='df -h'
alias du='du -h -c'
alias myip='wget http://checkip.dyndns.org/ -O - -o /dev/null | cut -d: -f 2 | cut -d\< -f 1'
alias grep='grep --color=auto'
alias egrep='egrep --color=auto'
alias fixres='xrandr --size 1280x800'
alias xp='xprop | grep "WM_WINDOW_ROLE\|WM_CLASS" && echo "WM_CLASS(STRING) = \"NAME\", \"CLASS\""' # get xprop CLASS and NAME
alias rc='sudo vim /etc/rc.conf'

# par2 repair
alias repair='par2 r *.par2'

# sudo won't recognize aliases without this
alias sudo='sudo '

alias mkpasswd='makepasswd -minchars 8'
alias updatefonts='sudo fc-cache -vf'
alias pacup='sudo pacman -Syu'

# screen irssi
alias irssi='screen irssi'

# newsgroups
alias nzbs='mv /home/michael/downloads/*.nzb /home/michael/newsgroups/nzb;echo Done.'

# suspend - without -f it takes ages to resume.. weird, FIXME
alias suspend='sudo s2ram -f'

Offline

#58 2010-11-03 11:55:07

ctruett
Member
Registered: 2010-05-27
Posts: 28

Re: November 2010 Screenshots

[edit] Sorry about that , I checked the filesize but not the resolution the first time.

Clean:
screen-2010-11-03-07-41-58_th.png

Covered:
screen-2010-11-03-07-45-25_th.png

Last edited by ctruett (2010-11-03 21:19:50)


Supergirl: But fortunately I printed out everything I could find, not just the beginner's guide.
Supergirl: I printed out internet.

Offline

#59 2010-11-03 16:45:30

milomouse
Member
Registered: 2009-03-24
Posts: 940
Website

Re: November 2010 Screenshots

Lots of great screenshots so far this month.. at work right now so I can't really post much.

valvet wrote:

I'll try and get some configs up when I get home. I have some temperature issues I can't work out.. and also, my xmonad "ScartchPad" doesn't inherit Xdefaults settings, so urxvt shows up as a xterm-like-colored-terminal, weird. TODO.

@valet: I had to assign my own values for scratchpad when I use XMonad.

-- <scratchpad>
manageScratchPad :: ManageHook
manageScratchPad = scratchpadManageHook (W.RationalRect (1/6) (1/4) (2/3) (2/5))
scratchPad = scratchpadSpawnActionCustom $ -- make sure to indent the next line:
  "urxvt -name scratchpad +sb -fn '-*-fixed-medium-r-normal-*-9-*-*-*-*-*' -e tmux -f $XDG_CONFIG_DIR/tmux/tmux.conf -L sp new-session 'vim ~/othe/.TODO_now ; zsh'"

Not sure if that will help. I thought it was strange how it wasn't inherited either.

P.S. Glad you like the vim theme! It's nice to know I'm not the only one who uses it.

Offline

#60 2010-11-03 21:05:13

NeoCrysis
Member
From: Norway
Registered: 2010-11-02
Posts: 4

Re: November 2010 Screenshots

Hi all.

My first post at the archlinux forums, thought I might start off with a screenshot of my FVWM desktop.
751426.jpeg
The wallpaper 'BlueStreak' is made by relhom over at deviantart.com
gtk-icon-theme-name = "LaGaDesk-BlueNight"
gtk-theme-name = "Blue-Joy"
Xcursor.theme: aero-drop
I got the FVWM menu from the 'Lethe'-theme over at box-look.org
I don't remember where I got the window decorations, but I think I got them from a metacity theme somewhere.

A simple conky-setup and the systemtray is tint2

Offline

#61 2010-11-03 21:24:00

valvet
Member
From: Denmark
Registered: 2009-06-06
Posts: 147

Re: November 2010 Screenshots

milomouse wrote:

Lots of great screenshots so far this month.. at work right now so I can't really post much.

valvet wrote:

I'll try and get some configs up when I get home. I have some temperature issues I can't work out.. and also, my xmonad "ScartchPad" doesn't inherit Xdefaults settings, so urxvt shows up as a xterm-like-colored-terminal, weird. TODO.

@valet: I had to assign my own values for scratchpad when I use XMonad.

-- <scratchpad>
manageScratchPad :: ManageHook
manageScratchPad = scratchpadManageHook (W.RationalRect (1/6) (1/4) (2/3) (2/5))
scratchPad = scratchpadSpawnActionCustom $ -- make sure to indent the next line:
  "urxvt -name scratchpad +sb -fn '-*-fixed-medium-r-normal-*-9-*-*-*-*-*' -e tmux -f $XDG_CONFIG_DIR/tmux/tmux.conf -L sp new-session 'vim ~/othe/.TODO_now ; zsh'"

Not sure if that will help. I thought it was strange how it wasn't inherited either.

P.S. Glad you like the vim theme! It's nice to know I'm not the only one who uses it.

That would work also, but I actually figured it out last night.. check: https://bbs.archlinux.org/viewtopic.php?id=107683 - it was because ScratchPad named the window "scratchpad" (I guess so it can find it again), and all my definitions in Xdefaults was named urxvt* (lowercase, using the name of the client), so changing them to URxvt (className) fixed it.

Offline

#62 2010-11-04 00:44:55

tartan
Member
From: Moscow, Russia
Registered: 2009-09-24
Posts: 61

Re: November 2010 Screenshots

NeoCrysis wrote:

Hi all.
....

Hello and welcome! )

Quite a neat work with porting metacity theme to fvwm. %)

I think pseudo transparency and the menu pixmap don't fit in, though. Something simplier wold be better.

Offline

#63 2010-11-04 01:03:45

noclue
Member
Registered: 2007-07-06
Posts: 9

Re: November 2010 Screenshots

valvet wrote:

That would work also, but I actually figured it out last night.. check: https://bbs.archlinux.org/viewtopic.php?id=107683 - it was because ScratchPad named the window "scratchpad" (I guess so it can find it again), and all my definitions in Xdefaults was named urxvt* (lowercase, using the name of the client), so changing them to URxvt (className) fixed it.


Would you mind posting your xmonad.hs and dzen configs? Thanks in advance.

Offline

#64 2010-11-04 03:25:05

rollenwiese
Member
Registered: 2008-02-24
Posts: 69

Re: November 2010 Screenshots

p0bcI.jpg

Compiz-Fusion
Emerald Theme - Custom blend of Gossamer and Rezlooks
GTK Theme - Modification of the Moka theme (thanks to whoever made it)
Wallpaper from wallbase

Offline

#65 2010-11-04 04:10:18

gefarion
Member
Registered: 2010-06-12
Posts: 19

Re: November 2010 Screenshots

My Arch-E17 desktop:

Clean:

201011040058141280x800s.th.png


Busy:

201011040103321280x800s.th.png


E17 Theme: ArchBlue (Personal theme, under construction)
GTK: MurrinaAquaish
Icon theme: Hydroxigen

Offline

#66 2010-11-04 07:13:31

NeoCrysis
Member
From: Norway
Registered: 2010-11-02
Posts: 4

Re: November 2010 Screenshots

tartan wrote:
NeoCrysis wrote:

Hi all.
....

Hello and welcome! )

Quite a neat work with porting metacity theme to fvwm. %)

I think pseudo transparency and the menu pixmap don't fit in, though. Something simplier wold be better.

Thank you :-)

I turned off the transparency, but I've gotten kind of used to it, so.. we'll see
Maybe I'll take another look at the menu as well.
Appreciate the feedback.

Offline

#67 2010-11-04 07:15:50

kdevelos
Member
From: Crete-Greece
Registered: 2009-04-08
Posts: 4

Re: November 2010 Screenshots

This is my desktop!

november2010.th.png

Uploaded with ImageShack.us

Offline

#68 2010-11-04 13:14:05

Erus_Iluvatar
Wiki Admin
Registered: 2010-04-01
Posts: 122

Re: November 2010 Screenshots


I'm french, don't mind my mistakes in english.

Offline

#69 2010-11-04 13:15:54

valvet
Member
From: Denmark
Registered: 2009-06-06
Posts: 147

Re: November 2010 Screenshots

Erus_Iluvatar wrote:

That's pretty neat :-)

Offline

#70 2010-11-04 13:29:46

milomouse
Member
Registered: 2009-03-24
Posts: 940
Website

Re: November 2010 Screenshots

@Erus_Iluvatar: Is the colorful top part your /etc/issue? If so, may I see the source? :}

Offline

#71 2010-11-04 13:47:43

Erus_Iluvatar
Wiki Admin
Registered: 2010-04-01
Posts: 122

Re: November 2010 Screenshots

Yep, /etc/issue here : http://ompldr.org/vNW9yaw


I'm french, don't mind my mistakes in english.

Offline

#72 2010-11-04 14:41:44

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: November 2010 Screenshots

tNjFqeg
It's DWM Hacking Day big_smile


This silver ladybug at line 28...

Offline

#73 2010-11-04 14:45:16

Revelation60
Member
From: The Netherlands
Registered: 2009-03-19
Posts: 158
Website

Re: November 2010 Screenshots

Valvet, I see you have a usenet checker, but I couldn't find the code for that on your github page. Could you please post that? Thanks!

Offline

#74 2010-11-04 15:00:32

milomouse
Member
Registered: 2009-03-24
Posts: 940
Website

Re: November 2010 Screenshots

StumpWM stuff.. not much changed. Also using Jumanji. Would post a wallpaper but I rarely see mine. tongue
th_2010_11_04-104934.png th_2010_11_04-105434.png

Offline

#75 2010-11-04 19:40:20

valvet
Member
From: Denmark
Registered: 2009-06-06
Posts: 147

Re: November 2010 Screenshots

Revelation60 wrote:

Valvet, I see you have a usenet checker, but I couldn't find the code for that on your github page. Could you please post that? Thanks!

I don't have a github page tho.. well I do, but nothing's there yet hehe.

Really it's just newsbeuter running in the background, updating RSS feeds from nzbs.org - newsbeuter has a setting that will allow you to exec something whenever there's new posts. So I do like this (probably other smart ways):

.newsbeuter/config

michael@swamp ~> cat .newsbeuter/config 
max-items        100
browser          chromium
show-read-feeds  yes
auto-reload yes
reload-time 60 # 5 minutes
notify-always yes
notify-format "%n"
notify-program "/home/michael/dev/newsbeuter/notify.sh"

ignore-article "*" "title =~ \"1080p\"" # I can't play 1080p on this laptop anyway.. ignore articles

notify.sh

michael@swamp ~> cat dev/newsbeuter/notify.sh 
#!/bin/bash
`echo "$1" > $HOME/.newsbeuter_pipe`

That'll create the .newsbeuter_pipe thingie..

Then I do, in dzen:

nzbs() {
    tail=`cat $HOME/.newsbeuter_pipe`
    if [ $tail == "0" ];
    then
        echo -n "^fg($MYCOLORBLUE)^i($ICONPATH/info_03.xbm)^fg($MYCOLORWHITE)  usenet has no new releases"
    else
        echo -n "^fg($MYCOLORBLUE)^i($ICONPATH/info_03.xbm)^fg($MYCOLORWHITE)  usenet has ^fg($MYCOLORYELLOW)$(echo $tail) ^fg($MYCOLORWHITE)new releases"
    fi
}

That's it.

And then i xmonad I just spawn a small window, on a key.. it'll look like this:

vNjFudw

Last edited by valvet (2010-11-04 19:42:45)

Offline

Board footer

Powered by FluxBB