17 lines
524 B
Markdown
17 lines
524 B
Markdown
# 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
|
|
|
|
```
|