From 5813c9667a250a381eb7a6a748f39a801fd16ca9 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Fri, 31 Jul 2020 23:50:43 +0000 Subject: [PATCH] Move slideshow prep info from notes to docs --- docs/README.md | 1 + docs/slideshow_prep.md | 16 ++++++++++++++++ notes.txt | 13 ------------- 3 files changed, 17 insertions(+), 13 deletions(-) create mode 100644 docs/slideshow_prep.md diff --git a/docs/README.md b/docs/README.md index dc98005..ff55d08 100644 --- a/docs/README.md +++ b/docs/README.md @@ -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) diff --git a/docs/slideshow_prep.md b/docs/slideshow_prep.md new file mode 100644 index 0000000..b78f6fb --- /dev/null +++ b/docs/slideshow_prep.md @@ -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 + +``` diff --git a/notes.txt b/notes.txt index 62cefb9..6a8e44a 100644 --- a/notes.txt +++ b/notes.txt @@ -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 ########################################