Skip to content

Instantly share code, notes, and snippets.

@bonelifer
Last active June 9, 2024 02:32
Show Gist options
  • Save bonelifer/9f692395afba5eeb30f07c9c2e07fc2f to your computer and use it in GitHub Desktop.
Save bonelifer/9f692395afba5eeb30f07c9c2e07fc2f to your computer and use it in GitHub Desktop.
install styles
#!/bin/bash
# Script to install multiple themes for The Lounge using docker exec
# Array containing the names of the themes to be installed
themes=(
"thelounge-theme-midnight"
"thelounge-theme-socialdotlol"
"thelounge-theme-new-morning"
"thelounge-theme-catppuccin-mocha"
"thelounge-theme-amoled-fix"
"thelounge-theme-new-morning-compact"
"thelounge-theme-solarized"
"thelounge-theme-dracula"
"thelounge-theme-abyss"
"thelounge-theme-onedark"
"thelounge-theme-crypto"
"thelounge-theme-flat-dark"
"thelounge-theme-monokai-console"
"thelounge-theme-mortified"
"thelounge-theme-hexified"
"thelounge-theme-scoutlink"
"thelounge-theme-classic"
)
# Loop through each theme in the array and install it using docker exec
for theme in "${themes[@]}"; do
docker exec -it thelounge s6-setuidgid abc thelounge install "$theme"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment