diff --git a/README.md b/README.md index 4476160..0e080a8 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,22 @@ Linux UI customized to resemble a Fallout Pip-Boy. To be used with the PINE64 Pi ## Install ```bash -... +git clone --recurse-submodules https://git.dejvino.cz/dejvino/PinePhoneBoyOS + +cd PinePhoneBoyOS ./convert_icons.sh ... + +git clone https://github.com/i-mint/midnight +mkdir -p ~/.themes +cp -R midnight/Midnight* ~/.themes/ +gsettings set org.gnome.desktop.interface gtk-theme "Midnight-GreenNight" +gsettings set org.gnome.desktop.wm.preferences theme "Midnight-GreenNight" + ``` +## Notes + - make sure mpd is running user-wide and not system-wide, otherwise it can't access alsa or pulseaudio (i.e. create ~/.config/mpd/mpd.conf) + diff --git a/config/sway/pipboy.conf b/config/sway/pipboy.conf new file mode 100644 index 0000000..f40a99e --- /dev/null +++ b/config/sway/pipboy.conf @@ -0,0 +1,41 @@ + +# Background +# TODO: download a wallpaper +output * bg ~/Desktop/wallpaper.jpg fill + +# Workspaces + set $W1 '1:STAT' + set $W2 '2:INV' + set $W3 '3:DATA' + set $W4 '4:MAP' + set $W5 '5:RADIO' + set $W6 '6:6' + set $W7 '7:7' + set $W8 '8:8' + set $W9 '9:9' + + set $WRADIO $W5 + +# Screen rotation +output DSI-1 transform 270 + +# Keyboard +exec "squeekboard" + +# Status Bar +exec "waybar -c ~/.config/waybar/config_v -b side" + +# Restore backlight +exec 'swayphone_power_wakeup' + +# RADIO +exec "mpd" +exec "xfmpc" +for_window [app_id="xfmpc"] move workspace $WRADIO; border none + +# Notifications +exec "mako" +# example Welcome message +exec "sleep 2; notify-send 'Welcome!' 'Your Pip-Boy is ready to be used.' --icon=dialog-information" + +