diff options
author | Brendan Coles <bcoles@gmail.com> | 2020-12-28 23:12:06 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-12-29 01:02:01 +0100 |
commit | c006952aeb41bbfa4b478e89a699d9f80dd068ba (patch) | |
tree | ae1d1823125915affce629fac4f211563dec7759 /Base/usr/share/man/man1 | |
parent | f606e7855641a0a257fda774b748ca08432bab64 (diff) | |
download | serenity-c006952aeb41bbfa4b478e89a699d9f80dd068ba.zip |
Base: Add pape man page documentation
Diffstat (limited to 'Base/usr/share/man/man1')
-rw-r--r-- | Base/usr/share/man/man1/pape.md | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Base/usr/share/man/man1/pape.md b/Base/usr/share/man/man1/pape.md new file mode 100644 index 0000000000..c116c24236 --- /dev/null +++ b/Base/usr/share/man/man1/pape.md @@ -0,0 +1,33 @@ +## Name + +pape - manage the system wallpaper. + +## Synopsis + +```**sh +$ pape [--show-all] [--show-current] [name] +``` + +## Description + +The `pape` utility can be used to set the system wallpaper and +list available wallpapers in the `/res/wallpapers/` directory. + +## Options + +* `-a`, `--show-all`: Show all wallpapers +* `-c`, `--show-current`: Show current wallpaper + +## Examples + +Set wallpaper to `/res/wallpapers/grid.png`: + +```**sh +$ pape grid.png +``` + +List available wallpapers: + +```**sh +$ pape -a +``` |