Tavsiye [ ScreenRc, BashRc, VimRc, zshrc ] Conf. Dosyaları

Başlatan haritsu, 11 Eylül 2008 - 08:24:07

« önceki - sonraki »

0 Üyeler ve 1 Ziyaretçi konuyu incelemekte.

haritsu

Merhaba Arkadaşlar,

Uzun zamandır kullandığım ve tavsiye ettiğim 3 adet yazılımın RC dosyalarını vereyim. Dileyen arkadaşlar bu başlık altından yayınlarsalar enfes olur ;)

Verdiğim satırları /home/kullanıcıadınız altındaki klasördeki ilgili dosyaların içeriği ile değiştiriniz.

.screenrc
# Configured by Haritsu - halid@halid.org - Yet Another Developer
# ------------------------------------------------------------------------------
# SCREEN SETTINGS
# ------------------------------------------------------------------------------

startup_message off
#nethack on

#defflow on # will force screen to process ^S/^Q
deflogin on
#autodetach off

# turn visual bell on
vbell on
vbell_msg " Wuff ---- Wuff!! "

# define a bigger scrollback, default is 100 lines
defscrollback 1024

# ------------------------------------------------------------------------------
# SCREEN KEYBINDINGS
# ------------------------------------------------------------------------------

# Remove some stupid / dangerous key bindings
bind ^k
#bind L
bind ^\
# Make them better
bind \\ quit
bind K kill
bind I login on
bind O login off
bind } history

# An example of a "screen scraper" which will launch urlview on the current
# screen window
#
#bind ^B eval "hardcopy_append off" "hardcopy -h $HOME/.screen-urlview" "screen urlview $HOME/.screen-urlview"

# ------------------------------------------------------------------------------
# TERMINAL SETTINGS
# ------------------------------------------------------------------------------

# The vt100 description does not mention "dl". *sigh*
termcapinfo vt100 dl=5\E[M

# turn sending of screen messages to hardstatus off
# Set the hardstatus prop on gui terms to set the titlebar/icon title
termcapinfo xterm*|rxvt*|kterm*|Eterm* hs:ts=\E]0;:fs=\007:ds=\E]0;\007
# use this for the hard status string
#hardstatus string "%h%? users: %u%?"

# An alternative hardstatus to display a bar at the bottom listing the
# windownames and highlighting the current windowname in blue. (This is only
# enabled if there is no hardstatus setting for your terminal)
#
hardstatus alwayslastline
hardstatus string "%-Lw%{= BW}%58>%n%f* %t%{-}%+Lw%< %{= kG}%-=%d %M %Y %c:%s%{-}"

#hardstatus string '%{= mK}%-Lw%{= KW}%50>%n%f* %t%{= mK}%+Lw%< %{= kG}%-=%D %d %M %Y %c:%s%{-}'
#hardstatus alwayslastline

# set these terminals up to be 'optimal' instead of vt100
termcapinfo xterm*|linux*|rxvt*|Eterm* OP

# Change the xterm initialization string from is2=\E[!p\E[?3;4l\E[4l\E>
# (This fixes the "Aborted because of window size change" konsole symptoms found
# in bug #134198)
termcapinfo xterm 'is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l'

# To get screen to add lines to xterm's scrollback buffer, uncomment the
# following termcapinfo line which tells xterm to use the normal screen buffer
# (which has scrollback), not the alternate screen buffer.
#
termcapinfo xterm|xterms|xs|rxvt ti@:te@

# ------------------------------------------------------------------------------
# STARTUP SCREENS
# ------------------------------------------------------------------------------

# Example of automatically running some programs in windows on screen startup.
#
# The following will open top in the first window, an ssh session to monkey
# in the next window, and then open mutt and tail in windows 8 and 9
# respectively.
#
#screen -t mutt mutt
#screen -t vim1 vim
#screen -t vim2 vim
#screen -t vim3 vim
#screen -t phperrors tail -f /var/log/php.errors.log|ccze
#screen -t bash bash
#screen -t bash bash


.bashrc
# ~/.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

export PS1='\[\033[01;33m\][`date +'%H:%M'`] \[\033[01;31m\](\[\033[00;37m\]\u@\h \W\[\033[01;31m\])\[\033[00m\]\$ '

# don't put duplicate lines in the history. See bash(1) for more options
export HISTCONTROL=ignoredups

# 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 "$(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)
#     PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
#     ;;
# *)
#     PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
#     ;;
# esac

# Comment in the above and uncomment this below for a color prompt
#PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
    PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD/$HOME/~}\007"'
    ;;
*)
    ;;
esac

# 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

# enable color support of ls and also add handy aliases
if [ "$TERM" != "dumb" ]; then
    eval "`dircolors -b`"
    alias ls='ls --color=auto'
    #alias dir='ls --color=auto --format=vertical'
    #alias vdir='ls --color=auto --format=long'
fi

# some more ls aliases
alias ll='ls -l'
alias la='ls -la'
#alias l='ls -CF'
alias ls='ls --color=auto'

# 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 ]; then
    . /etc/bash_completion
fi

# Open Screen
if [ -z "$STY" ]; then
    screen -Rd
fi

# Locale Settings
export LANG=tr_TR.UTF-8
export LC_ALL=tr_TR.UTF-8


.vimrc
syntax on

set ignorecase
set hlsearch
set bg=dark
set ft=perl
set ft=php
set hls
set incsearch
set showmatch
set tabstop=4
set shiftwidth=4
set backspace=indent,eol,start
set fileencoding=utf-8
set encoding=utf-8
set history=50
set ruler
set showcmd
set showmatch
set title
set smarttab
set smartindent
set splitright
set wildmenu
set nowrap
set ai

iab chlog <c-r>=strftime("%Y-%m-%d")<cr>  Halid Said Altuner  <halid@halid.org><cr>

map <F2> :bp<CR>
map <F3> :bn<CR>
map <F4> :set filetype=php
map <F5> :set syntax=php<cr>
map <F6> :let &background = ( &background == "dark" ? "light" : "dark" )<CR>
map <F7> :set wrap<CR>:set textwidth=80<CR>
map <F8> :vsp<CR>^W^W:bn<CR>
map <F9> :sp<CR><C-W><C-W>:SVNAnnotate<CR>
map <F12> :sp<CR><C-W><C-W>:SVNDiff<CR>
map <C-x> :qa!<CR>

heartsmagic

#1
Güzel başlık. Ama bence daha genelleşsin bu, sonra da sabitleyelim. Mesela sadece bu üç dosya için olmasın. Yeri gelir biri conky için de dosya koyar, emacs olur zaman zaman. Buna göre başlığı değiştirirsen çok güzel olur.


.bashrc ekstraları:

function cd () {
command cd "$1"; ls --color;
}

alias top="htop"
alias wget="wget -c"

function aps {
   aptitude search $1;
}

function apss {
  aptitude show $1;
}

function api {
  sudo aptitude install $*;
}

function apr {
sudo aptitude remove $1;
}

function aprr {
sudo aptitude purge $1;
}

function apu {
sudo aptitude update;
}

function apg {
sudo aptitude safe-upgrade;
}

function apgg {
sudo aptitude dist-upgrade;
}



.vimrc esktraları:


set bs=2
set nobackup
set nocompatible
set backspace=indent,eol,start
set nowrap
set autoindent
set noerrorbells
colorscheme gotan


Not: Renk şeması için öncelikle edinmeniz lazım.
http://www.cs.cmu.edu/~maverick/VimColorSchemeTest/index-c.html







Hayattan çıkarı olmayanların, ölümden de çıkarı olmayacaktır.
Hayatlarıyla yanlış olanların ölümleriyle doğru olmalarına imkân var mıdır?


Böylece yalan, dünyanın düzenine dönüştürülüyor.

haritsu

#2
Hatırlatmakta fayda var; .vimrc dosyası sadece vim kullananlar için gereklidir :)

vim normal vi'den biraz daha farklıdır.

sudo aptitude install vim komutuyla kurabilirsiniz.

Saygılar.

efa

artık benim de bashrc ekstram var :)


alias dy='mkdir'
alias yukle='sudo apt-get install'
alias denetle='sudo apt-get update'
alias guncelle='sudo apt-get upgrade'
alias yenile='sudo /etc/init.d/networking restart'

Exodus

~/.bashrc
Alıntı Yap# Check for an interactive session
[ -z "$PS1" ] && return

alias ls='ls --color=auto'
PS1='\[\e[0;32m\]\u \[\e[1;34m\]\w \[\e[1;32m\]\$ \[\e[1;37m\] '

export PATH="${PATH}:${HOME}/bin"

ayikla () {
   if [ -f $1 ] ; then
       case $1 in
           *.tar.bz2)   tar xvjf $1    ;;
           *.tar.gz)    tar xvzf $1    ;;
           *.bz2)       bunzip2 $1     ;;
           *.rar)       rar x $1       ;;
           *.gz)        gunzip $1      ;;
           *.tar)       tar xvf $1     ;;
           *.tbz2)      tar xvjf $1    ;;
           *.tgz)       tar xvzf $1    ;;
           *.zip)       unzip $1       ;;
           *.Z)         uncompress $1  ;;
           *.7z)        7z x $1        ;;
           *)           echo "don't know how to extract '$1'..." ;;
       esac
   else
       echo "'$1' is not a valid file!"
   fi
}

srv () {
         sudo /etc/rc.d/$1 $2
}

sysup () {
           sudo pacman -Syu
}

syscl () {
           sudo pacman -Scc
}

kur () {
         sudo pacman -S s1
}

sil () {
         sudo pacman -Rs s1
}
Vim kullanmiyorum ama RXVT terminal kullananlar icin gelsin. ~/.Xdefaults
Alıntı Yap
! ----------------------------------------------------------------------
! file: ~/.Xdefaults
! author: Samed Beyribey - http://eventualis.org
! modified: November 25, 2008
! vim:set ts=2 tw=80 ft=xdefaults:
! ----------------------------------------------------------------------

! terminal colors ------------------------------------------------------

! tangoesque scheme
*background: #111111
*foreground: #babdb6
! Black
*color0: #000000
*color8: #555753
! Red
*color1: #ff6565
*color9: #ff8d8d
! Green
*color2: #93d44f
*color10: #c8e7a8
! Yellow
*color3: #eab93d
*color11: #ffc123
! Blue
*color4: #204a87
*color12: #3465a4
! Mangenta
*color5: #ce5c00
*color13: #f57900
! Cyan
*color6: #89b6e2
*color14: #46a4ff
! White
*color7: #cccccc
*color15: #ffffff


! rxvt-unicode ---------------------------------------------------------

!for antialiased fonts (using Xft)
!urxvt*font: xft:Monospace:pixelsize=14
!urxvt*boldFont: xft:Monospace:pixelsize=14

!for normal X11 fonts:
urxvt*font: xft:terminus:pixelsize=10
urxvt*boldFont: xft:terminus:pixelsize=10
urxvt*geometry: 100x70
urxvt*internalBorder: 5
urxvt*fading: 20
urxvt*shading: 30
urxvt*tintColor: black
urxvt*inheritPixmap: true
!urxvt*depth: 24
urxvt*depth: 32
urxvt*saveLines: 32767
urxvt*visualBell: true
urxvt*scrollTtyKeypress: true
urxvt*scrollWithBuffer: false
urxvt*scrollTtyOutput: false
urxvt*scrollBar: false
urxvt*scrollstyle: plain
urxvt*scrollBar_right: true
urxvt*scrollColor: #777777
urxvt*cursorColor: #ffcc00
urxvt*loginShell: true
urxvt*termName: rxvt
urxvt*cutchars: "()*,<>[]{}|'
urxvt*print-pipe: cat > $(echo urxvt.dump.`date +'%Y%M%d%H%m%S'`)
urxvt*secondaryScroll: true
urxvt*mapAlert: true
urxvt*utmpInhibit: true
urxvt*perl-lib: /usr/lib/urxvt/perl/
urxvt*perl-ext-common: default,matcher
urxvt*urlLauncher: /usr/bin/firefox
urxvt*matcher.button: 1
urxvt*matcher.pattern.1: \\bwww\\.[\\w-]+\\.[\\w./?&@#-]*[\\w/-]
urxvt*background: rgba:1111/1111/1111/dddd


! xterm ----------------------------------------------------------------

xterm*geometry: 80x25
xterm*faceName: terminus:pixelsize=10
xterm*dynamicColors: true
xterm*utf8: 2
xterm*eightBitInput: true
xterm*saveLines: 32767
xterm*scrollTtyKeypress: true
xterm*scrollTtyOutput: false
xterm*scrollBar: true
xterm*loginShell: true
xterm*jumpScroll: false
xterm*multiScroll: true
xterm*toolBar: true


! xclock ---------------------------------------------------------------

xclock*analog: false
xclock*update: 1 ! update every 1 sec
xclock*Foreground: white
xclock*background: black


! xpdf -----------------------------------------------------------------

xpdf*enableFreetype: yes
xpdf*antialias: yes
xpdf*foreground: black
xpdf*background: white
xpdf*urlCommand: /usr/bin/firefox %s
xpdf*viKeys: on


! xscreensaver ---------------------------------------------------------

!font settings
xscreensaver.Dialog.headingFont: -*-terminus-*-*-*-*-*-*-*-*-*-*-*-*
xscreensaver.Dialog.bodyFont: -*-terminus-*-*-*-*-*-*-*-*-*-*-*-*
xscreensaver.Dialog.labelFont: -*-terminus-*-*-*-*-*-*-*-*-*-*-*-*
xscreensaver.Dialog.unameFont: -*-terminus-*-*-*-*-*-*-*-*-*-*-*-*
xscreensaver.Dialog.buttonFont: -*-terminus-*-*-*-*-*-*-*-*-*-*-*-*
xscreensaver.Dialog.dateFont: -*-terminus-*-*-*-*-*-*-*-*-*-*-*-*
xscreensaver.passwd.passwdFont: -*-terminus-*-*-*-*-*-*-*-*-*-*-*-*
!general dialog box (affects main hostname, username, password text)
xscreensaver.Dialog.foreground: #ffffff
xscreensaver.Dialog.background: #111111
xscreensaver.Dialog.topShadowColor: #111111
xscreensaver.Dialog.bottomShadowColor: #111111
xscreensaver.Dialog.Button.foreground: #666666
xscreensaver.Dialog.Button.background: #ffffff
!username/password input box and date text colour
xscreensaver.Dialog.text.foreground: #666666
xscreensaver.Dialog.text.background: #ffffff
xscreensaver.Dialog.internalBorderWidth:24
xscreensaver.Dialog.borderWidth: 20
xscreensaver.Dialog.shadowThickness: 2 ! must be > zero
!timeout bar (background is actually determined by Dialog.text.background)
xscreensaver.passwd.thermometer.foreground: #ff0000
xscreensaver.passwd.thermometer.background: #000000
xscreensaver.passwd.thermometer.width: 8
!datestamp format--see the strftime(3) manual page for details
xscreensaver.dateFormat: %I:%M%P %a %b %d, %Y
Arch Linux FTW!

raixu

alias _gtk='vim ~/.gtkrc-2.0'
alias _Xdefaults='vim ~/.Xdefaults'
alias _menu='vim ~/.fluxbox/menu'
alias kar="xsnow -notrees -nosanta"
alias haydi_eyvallah="su -c 'shutdown -h now'"
alias so='source ~/.bashrc '
alias sansur="cat /etc/opendns > /etc/resolv.conf"
alias oynat="ogg123 ~/Muzikler/Firtinam.ogg"

#Saat
casio()
{
while true;do clear;echo "===========";date +"%r";echo "===========";sleep 1;done
}

#Arşivden çıkar
cikar () {
    if [ -f $1 ] ; then
        case $1 in
            *.tar.bz2)   tar xjf $1        ;;
            *.tar.gz)    tar xzf $1     ;;
            *.bz2)       bunzip2 $1       ;;
            *.rar)       rar x $1     ;;
            *.gz)        gunzip $1     ;;
            *.tar)       tar xf $1        ;;
            *.tbz2)      tar xjf $1      ;;
            *.tgz)       tar xzf $1       ;;
            *.zip)       unzip $1     ;;
            *.Z)         uncompress $1  ;;
            *.7z)        7z x $1    ;;
            *)           echo "'$1' dosyası çıkarılamıyor." ;;
        esac
    else
        echo "'$1' geçerli bir dosya değil"
    fi
}

PATH=/opt/Java/bin/:$PATH.
PS1="\e[1;36m\][\w]  \e[1;37m\]>> ";

export PS1 PATH

heartsmagic

Hayattan çıkarı olmayanların, ölümden de çıkarı olmayacaktır.
Hayatlarıyla yanlış olanların ölümleriyle doğru olmalarına imkân var mıdır?


Böylece yalan, dünyanın düzenine dönüştürülüyor.

raixu


raixu


.bashrc

#.bashrc
alias _gtk='vim ~/.gtkrc-2.0'
alias _Xdefaults='vim ~/.Xdefaults'
alias _menu='vim ~/.fluxbox/menu'
alias kar="xsnow -notrees -nosanta"
alias haydi_eyvallah="su -c 'shutdown -h now'"
alias so='source ~/.bashrc '
alias sansur="cat /etc/opendns > /etc/resolv.conf"
alias oynat="ogg123 ~/Muzikler/Firtinam.ogg"

#Saat
casio()
{
while true;do clear;echo "===========";date +"%r";echo "===========";sleep 1;done
}

#Arşivden çıkar
cikar () {
     if [ -f $1 ] ; then
         case $1 in
             *.tar.bz2)   tar xjf $1        ;;
             *.tar.gz)    tar xzf $1     ;;
             *.bz2)       bunzip2 $1       ;;
             *.rar)       rar x $1     ;;
             *.gz)        gunzip $1     ;;
             *.tar)       tar xf $1        ;;
             *.tbz2)      tar xjf $1      ;;
             *.tgz)       tar xzf $1       ;;
             *.zip)       unzip $1     ;;
             *.Z)         uncompress $1  ;;
             *.7z)        7z x $1    ;;
             *)           echo "'$1' dosyası çıkarılamıyor." ;;
         esac
     else
         echo "'$1' geçerli bir dosya değil"
     fi
}

PATH=/opt/Java/bin/:$PATH.
PS1="\e[1;36m\][\w]  \e[1;37m\]>> ";

export PS1 PATH


.vimrc

# ~/.exrc
set nu
set autoindent
set wrap
set nobackup
set noswapfile
colorscheme oceandeep


.Xdefaults

# ~/.Xdefaults
#Xcursor.theme: Vienna3
Xcursor.theme: Area53
Xcursor.size: 12

aterm*transparent:true
aterm*shading:60
aterm*background:Black
aterm*foreground:White
aterm*borderLess: true
aterm*scrollBar: false
aterm*cursorColor: cyan
aterm*font:lucidasanstypewriter-bold-14

xterm*dynamicColors:    true
xterm*utf8:             2
xterm*eightBitInput:    true
xterm*saveLines:        32767
xterm*scrollTtyKeypress:true
xterm*scrollTtyOutput:  false
xterm*scrollBar:        false
xterm*loginShell:       true
xterm*font: lucidasanstypewriter-12
#xterm*faceName:         Bitstream Vera Sans Mono:pixelsize=10
xterm*jumpScroll:       true
xterm*multiScroll:      true
xterm*toolBar:          false

özgürubuntu

Birisi "anladığımız" dilden konuşsa, biz de faydalansak :D Nedir bu dosyalar? Değiştirdiğimiz de ne elde ediyoruz mesela kısa kısa, ben ilk mesajdaki o 3 "şey"in ne olduğunu anlamadım mesela..

Cahillik işte :)

raixu

Alıntı yapılan: özgürubuntu - 19 Kasım 2009 - 17:12:18
Birisi "anladığımız" dilden konuşsa, biz de faydalansak :D Nedir bu dosyalar? Değiştirdiğimiz de ne elde ediyoruz mesela kısa kısa, ben ilk mesajdaki o 3 "şey"in ne olduğunu anlamadım mesela..

Cahillik işte :)

RC dosyaları bir programının açılışta okuduğu ayar dosyalarıdır.

mesela .vimrc dosyası vim adlı editör programının açılışında olması istediğiniz ayarları yazdığınız dosyadır.
içindeki
set nu
satırı. Programın açılışında satır numaraları görmek istediğimizi belirtir.

heartsmagic

Özürlük bir durum elbette yok. Gözden kaçmıştır sadece.
Hayattan çıkarı olmayanların, ölümden de çıkarı olmayacaktır.
Hayatlarıyla yanlış olanların ölümleriyle doğru olmalarına imkân var mıdır?


Böylece yalan, dünyanın düzenine dönüştürülüyor.

hitokiri

Ben bu alias işini çok sevdim :)
.bashrc    ;
   
    alias paketkur="sudo apt-get install"
    alias temizle="sudo aptitude remove"
    alias denetle="sudo apt-get update"
    alias güncelle="sudo aptitude safe-upgrade"
    alias çıkart="eject"
    alias derle="make intall"
    alias yap="make"
    alias yıka="make clean"
    alias kapat="sudo halt"
    alias çık="exit"
    alias durumne="dpkg -l | grep"
    alias model="lspci"
    alias ayar="./configure"
    alias çek="make check"
    alias pencere="nautilus"
    alias geber="pkill"

ırmak

Alıntı yapılan: raixu - 19 Kasım 2009 - 19:18:17
Alıntı yapılan: özgürubuntu - 19 Kasım 2009 - 17:12:18
Birisi "anladığımız" dilden konuşsa, biz de faydalansak :D Nedir bu dosyalar? Değiştirdiğimiz de ne elde ediyoruz mesela kısa kısa, ben ilk mesajdaki o 3 "şey"in ne olduğunu anlamadım mesela..

Cahillik işte :)

RC dosyaları bir programının açılışta okuduğu ayar dosyalarıdır.

mesela .vimrc dosyası vim adlı editör programının açılışında olması istediğiniz ayarları yazdığınız dosyadır.
içindeki
set nu
satırı. Programın açılışında satır numaraları görmek istediğimizi belirtir.


Açıklama için teşekkürler.

screenshot

 hitokiri ben sana ne diyeyim bilmemki :D Neredeyse 1 saatlik çalışmam kaydetmeden gitti.

ubuntuda çalışırken senin alias hoşuma gitti bende ekledim.   Tek tek paketkur,   temizle, denetle yazdım terminalde çalıştı. Kapatda terminali kapatmak diye düşündüm yazdım bilgisayarım kapandı :D
"Zihin Fukara Olunca , Fikir Ukala Olur"

hitokiri

Ahaha :D
    alias çık="exit"
terminali kapat çık :)
Kusura bakma valla :D

screenshot

Alıntı yapılan: hitokiri - 31 Mart 2010 - 13:28:03
Ahaha :D
    alias çık="exit"
terminali kapat çık :)
Kusura bakma valla :D
Estağfurullah ne kusuru. Asla unutmayacağım bi komut öğrendim sayende :D
"Zihin Fukara Olunca , Fikir Ukala Olur"

hitokiri

Alıntı yapılan: screenshot - 31 Mart 2010 - 15:12:29
Alıntı yapılan: hitokiri - 31 Mart 2010 - 13:28:03
Ahaha :D
    alias çık="exit"
terminali kapat çık :)
Kusura bakma valla :D
Estağfurullah ne kusuru. Asla unutmayacağım bi komut öğrendim sayende :D

Hehehe :D Estağfurullah ne demek vazifemiz :D

ironic


function liste() {
toplam=$(ls -lh | head -n1 | gawk '{print $2}')
ls -lh | sed '1d' | gawk '{print "\033[1;32m"  $8 " " "\033[1;34m" "~~~~~>"  " " "\033[1;35m"  $5"B" " " "\033[1;34m"  "[" "\033[1;33m"   $1 "\033[1;34m" "]" "\033[0m"}' ;echo -e "\033[1;33m"TOPLAM BOYUT"\033[1;34m" ="\033[1;35m" $toplam"B" "\033[0m"
}







function pcsht() {
sudo shutdown -h $1
}



if

PS1="\[\e[01;32m\]\u@\h \[\e[01;34m\]\W \`if [ \$? = 0 ]; then echo -e '\[\e[01;32m\]:)'; else echo -e '\[\e[01;31m\]:('; fi\` \[\e[01;34m\]$\[\e[00m\]"


Doğru komut girdiğinizde ":)"; yanlış komut girdiğinizde ":(" yapan bir PS1.



leica

burası tam yeri mi emin değilim öyle değilse kusura bakmayın..arch için; sistemin kullandığı yazı tipini, boyutunu değiştirmek için hangi dosyayı düzenlemem lazım acaba? kısaca arch için en iyi fonts ayarı nedir ? hangi dosyadadır?

if

Alıntı yapılan: leica - 20 Mayıs 2011 - 22:44:40
burası tam yeri mi emin değilim öyle değilse kusura bakmayın..arch için; sistemin kullandığı yazı tipini, boyutunu değiştirmek için hangi dosyayı düzenlemem lazım acaba? kısaca arch için en iyi fonts ayarı nedir ? hangi dosyadadır?

Terminalde kullanılan mı yoksa sistem geneli kullanılan mı?

leica

Alıntı yapılan: if - 20 Mayıs 2011 - 22:49:04
Terminalde kullanılan mı yoksa sistem geneli kullanılan mı?

sistem genel kullanımı

if


leica

Alıntı yapılan: if - 20 Mayıs 2011 - 23:44:20
https://wiki.archlinux.org/index.php/Font_Configuration
https://wiki.archlinux.org/index.php/Fonts

Ayrıca lxappearance uygulamasını kurarak font değişimi kolayca yapabilirsiniz.
lxappearance çok iyimiş yahu çok sağol @if hazırladığın belgeler ve yardımlarınla archer oldum :)