blob: 7fa5c9632b26c3827f2925041d10bb8fbe921dc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
## 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
|