diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-03-21 09:52:57 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-03-21 09:52:57 +0100 |
commit | 7105cb2e1c7111d15ffe6b8148706a15c4075f86 (patch) | |
tree | 43228e94791f36dbe59a1efc561af25d2c2896d9 /etc/aliases/x | |
parent | 42efa290a7a8ee76ec5575958f191b651d5da18f (diff) |
Added some more structure and comments to the alias definitions
Diffstat (limited to 'etc/aliases/x')
-rw-r--r-- | etc/aliases/x | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/etc/aliases/x b/etc/aliases/x index 7fa5c96..7242c61 100644 --- a/etc/aliases/x +++ b/etc/aliases/x @@ -2,7 +2,21 @@ # feh etc if X is running, x for startx otherwise if pidof X &> /dev/null; then - ## feh + + # quiet and verbose can actually be used together here. + # quiet = suppress non-critical errors, verbose = show progress bars + alias feh='feh --quiet --verbose' + + # Alias structure: + # feh[theme][recursive?][slide-delay?] + # theme = [f]ullscreen | [i]ndex | [j]ust | [t]humbnail + # recursive: r for recursive, nothing otherwise + # slide-delay: + # none - no slideshow + # number - slideshow, $number seconds per image + # x - slideshow, seconds will be specified on commandline + # (like "fehfrx 7 .") + # the themes are defined in .fehrc alias fehf='feh -Tfull' # Fullscreen alias fehfr='feh -Tfull --recursive' alias fehi='feh .fehindex.jpg' |