FreeBSD Screen Shots

dh said:
Pretty.. share your details.sh

if you have looked closely, details script is nothing more than a sequence of mundane unix commands like uname, df, cal, etc. But I think it might be the issue ascii that you might be interested in. i will post it tonight.
 
May be this thread should simply be renamed as "Post your Screenshots". So we don't need a new thread every month, unlike various linux forums, where Screenshot threads get pretty populated in a month.

Anyway this is my first screen this year. FreeBSD8+fvwm2 on a brand new Samsung E20 Aura Laptop with nvidia g105m.



WM - Fvwm2 (Minor mods to one of the default configs)
Apps - Vim, mc, rexima, ncmpc.
Dockapps - wmclock, and wmweather
Wallpaper - http://gnome-look.org/content/show.php/Glowing+Stripes+2?content=117689
 
Daisuke_Aramaki said:
May be this thread should simply be renamed as "Post your Screenshots". So we don't need a new thread every month, unlike various linux forums, where Screenshot threads get pretty populated in a month.

Yeah, I agree. Threads merged to "FreeBSD Screen Shots", and relocated to the general X.org section. DE/WM-specific screenshots can still be posted under the existing screenshot topics in their sub-forums.
 
Here is my screenshot. A bit dry... How do I resize this thingy in a post?
Screenshot.png
 
Just resize the image with your image software ( like what comes in Fedora 11 ) and save the smaller file to your photo host . . .

looks good tho.
 
I am a proud gnome user, and am glad for the work that has gone into gnome 2.28 - it works pretty well.



I changed the icon theme (Dropline Neu), which really made the desktop look nicer.

I also modified metacity so that alt-tab always brings up the non-thumbnail window switcher, even if compositing is on.
 

Attachments

  • Screenshot_thumb.jpg
    Screenshot_thumb.jpg
    10 KB · Views: 605
mdg583 said:
I am a proud gnome user, and am glad for the work that has gone into gnome 2.28 - it works pretty well.



I changed the icon theme (Dropline Neu), which really made the desktop look nicer.

I also modified metacity so that alt-tab always brings up the non-thumbnail window switcher, even if compositing is on.

What's the name of your gtk theme?
 
Daisuke_Aramaki said:
nice prompt. Any chance of getting it?
Code:
setprompt () {
    ###
    # Need this so the prompt will work.

    setopt prompt_subst

    ###
    # See if we can use colors.

    autoload colors zsh/terminfo
    if [[ "$terminfo[colors]" -ge 8 ]]; then
    colors
    fi
    for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do
    eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}'
    eval PR_LIGHT_$color='%{$fg[${(L)color}]%}'
    (( count = $count + 1 ))
    done
    PR_NO_COLOUR="%{$terminfo[sgr0]%}"

    ###
    # See if we can use extended characters to look nicer.

    typeset -A altchar
    set -A altchar ${(s..)terminfo[acsc]}
    PR_SET_CHARSET="%{$terminfo[enacs]%}"
    PR_SHIFT_IN="%{$terminfo[smacs]%}"
    PR_SHIFT_OUT="%{$terminfo[rmacs]%}"
    PR_HBAR="_"
    PR_ULCORNER="_"
    PR_LLCORNER="\\"
    PR_LRCORNER="<"
    PR_URCORNER="_"

    ###
    # Decide if we need to set titlebar text.

    case $TERM in
    xterm*)
        PR_TITLEBAR=$'%{\e]0;%(!.-=*[ROOT]*=- | .)%n@%m:%~ | ${COLUMNS}x${LINES} | %y\a%}'
        ;;
    screen)
        PR_TITLEBAR=$'%{\e_screen \005 (\005t) | %(!.-=[ROOT]=- | .)%n@%m:%~ | ${COLUMNS}x${LINES} | %y\e\\%}'
        ;;
    *)
        PR_TITLEBAR=''
        ;;
    esac

    ###
    # Decide whether to set a screen title
    if [[ "$TERM" == "screen" ]]; then
    PR_STITLE=$'%{\ekzsh\e\\%}'
    else
    PR_STITLE=''
    fi

    ###
    # APM detection

    if which ibam > /dev/null; then
    PR_APM='$PR_RED${${PR_APM_RESULT[(f)1]}[(w)-2]}%%(${${PR_APM_RESULT[(f)3]}[(w)-1]})$PR_LIGHT_BLUE:'
    elif which apm > /dev/null; then
    PR_APM='$PR_RED${PR_APM_RESULT[(w)5,(w)6]/\% /%%}$PR_LIGHT_BLUE:'
    else
    PR_APM=''
    fi

    ###
    # Finally, the prompt.

    PROMPT='$PR_SET_CHARSET$PR_STITLE${(e)PR_TITLEBAR}\
$PR_CYAN$PR_SHIFT_IN$PR_ULCORNER$PR_BLUE$PR_HBAR$PR_SHIFT_OUT(\
$PR_GREEN%(!.%SROOT%s.%n)$PR_BLUE@$PR_GREEN%m$PR_BLUE:$PR_MAGENTA%d\
$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_CYAN$PR_HBAR${(e)PR_FILLBAR}\
$PR_SHIFT_IN$PR_HBAR$PR_CYAN$PR_URCORNER$PR_SHIFT_OUT\

$PR_CYAN$PR_SHIFT_IN$PR_LLCORNER$PR_BLUE$PR_HBAR$PR_SHIFT_OUT(\
%(?,$PR_LIGHT_GREEN%?,$PR_RED%?)\
${(e)PR_APM}\
$PR_LIGHT_BLUE:%(!.$PR_RED.$PR_WHITE)%#$PR_BLUE)$PR_SHIFT_IN=$PR_SHIFT_OUT\
$PR_CYAN$PR_SHIFT_IN>$PR_SHIFT_OUT\
$PR_NO_COLOUR '

    RPROMPT=' $PR_CYAN$PR_SHIFT_IN$PR_CYAN$PR_LRCORNER$PR_SHIFT_OUT$PR_NO_COLOUR'

    PS2='$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\
$PR_BLUE$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT(\
$PR_LIGHT_GREEN%_$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\
$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT$PR_NO_COLOUR '
}

I might change it, it needs manual call to "clear" when ever terminal window is resized to format correctly atm.
 
Back
Top