## vim:ft=zsh # feh etc if X is running, x for startx otherwise if pidof X &> /dev/null; then ## feh alias fehf='feh -Tfull' # Fullscreen alias fehfr='feh -Tfull --recursive' alias fehi='feh .fehindex.jpg' alias fehj='feh -Tjust' # Screensaver-like alias fehjr='feh -Tjust --recursive' for i in {5,10,15,20}; { alias fehj$i="feh -Tjust --slideshow-delay $i" alias fehf$i="feh -Tfull --slideshow-delay $i" alias fehjr$i="feh -Tjust --slideshow-delay $i --recursive" alias fehfr$i="feh -Tfull --slideshow-delay $i --recursive" } alias fehjx='feh -Tjust --slideshow-delay' alias fehfx='feh -Tfull --slideshow-delay' alias fehjrx='feh -Tjust --recursive --slideshow-delay' alias fehfrx='feh -Tfull --recursive --slideshow-delay' alias feht='feh -Tthumbnail' # List thumbnails alias fehtr='feh -Tthumbnail --recursive' # Automatically upload screenshot plzkthx alias putscreen='put $(screenshot)' # Useful when a beamer is connected to my laptop alias rplayer='mplayer -vo x11 -zoom -vf scale=1024:-2' else # start x and log out immediately alias x='unsetopt bg_nice; startx &! exit' fi