Test Desktop Setup

OS Alpine Linux {EDGE} Desktop Setup

Alpine System install

Run Alpine install script


setup-alpine

Desktop Setup

Run Alpine Desktop Setup script


setup-desktop sway

Additional Software (Enable community repositories)

Personal Scripts

#!/bin/bash
######################################################################
#Copyright (C) 2025  Kris Occhipinti
#https://filmsbykris.com

#This program is free software: you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation version 3 of the License.

#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#GNU General Public License for more details.

#You should have received a copy of the GNU General Public License
#along with this program.  If not, see <http://www.gnu.org/licenses/>.
######################################################################

read -p "Search for: " q
list="$(wget -qO- "https://filmsbykris.com/shell?q=$q" | grep "youtube.com" | sed 's/\[34m//g')"
url="$(echo "$list" | fzf --prompt="Select a Video: " | sed 's/http/\nhttp/g' | grep 'watch?v')"

[[ $url ]] || exit
echo "Downloading $url"
yt-dlp --cookies-from-browser firefox  "$url"