Move slideshow prep info from notes to docs
This commit is contained in:
parent
aff02a434f
commit
5813c9667a
|
@ -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)
|
* [Standard Raspberry Pi Toolchain Setup (REQUIRED)](rpi_tools.md)
|
||||||
* [CPU Governor](cpu_governor.md)
|
* [CPU Governor](cpu_governor.md)
|
||||||
* [AUR Package Manager (REQUIRED)](aur_package_manager.md)
|
* [AUR Package Manager (REQUIRED)](aur_package_manager.md)
|
||||||
|
* [Slideshow Prep (REQUIRED)](slideshow_prep.md)
|
||||||
|
|
16
docs/slideshow_prep.md
Normal file
16
docs/slideshow_prep.md
Normal 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
|
||||||
|
|
||||||
|
```
|
13
notes.txt
13
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
|
# setup slide show app
|
||||||
########################################
|
########################################
|
||||||
|
|
Loading…
Reference in a new issue