Move slideshow prep info from notes to docs

This commit is contained in:
KemoNine 2020-07-31 23:50:43 +00:00
parent aff02a434f
commit 5813c9667a
3 changed files with 17 additions and 13 deletions

View File

@ -9,3 +9,4 @@ This folder contains a bunch of general information on how to get the base of a
* [Standard Raspberry Pi Toolchain Setup (REQUIRED)](rpi_tools.md)
* [CPU Governor](cpu_governor.md)
* [AUR Package Manager (REQUIRED)](aur_package_manager.md)
* [Slideshow Prep (REQUIRED)](slideshow_prep.md)

16
docs/slideshow_prep.md Normal file
View File

@ -0,0 +1,16 @@
# Slideshow prep
The below commands will prep the system for storing photos as well as install fundamental packages needed to make the slideshow feature (the feature that's the whole point of the project) work.
``` sh
# prep storage for pics
btrfs subvolume create /tank
btrfs subvolume create /tank/pictures
# load pictures via rclone/syncthing/scp/etc (semi-optional)
# basic window manager stuffs for making feh work properly
yay -S greetd cage xorg-server-xwayland
systemctl enable --now greetd
```

View File

@ -1,16 +1,3 @@
########################################
# prep for slideshow
########################################
# prep storage for pics
btrfs subvolume create /tank
btrfs subvolume create /tank/pictures
# load pictures via rclone/syncthing/scp/etc
# basic window manager stuffs for making feh work properly
yay -S greetd cage xorg-server-xwayland
systemctl enable --now greetd
########################################
# setup slide show app
########################################