Skip to content

Commit

Permalink
feat: 🎉 init solarizzed (experimental)
Browse files Browse the repository at this point in the history
- init solarizzed
 - create files module to copy codium repo
 - create rpm-ostree module to add codium, windscribe, zen-browser, and prettifying packages
 - remove unwanted packages
 - add fonts module & script module as prettifier
  • Loading branch information
askpng committed Feb 6, 2025
1 parent 41ad251 commit ec43343
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build-solarizzed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build solarizzed
on:
schedule:
- cron: "00 6 * * 1" # build at 6 AM UTC on Mondays

push:
paths:
- "recipes/solarizzed.yml"

pull_request: # allow PRs triggering builds
workflow_dispatch: # allow manually triggering builds
jobs:
bluebuild:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
strategy:
fail-fast: false # stop GH from cancelling all matrix builds if one fails
matrix:
recipe:
- solarizzed.yml
steps:
# the build is fully handled by the reusable github action
- name: Build Custom Image
uses: blue-build/[email protected]
with:
recipe: ${{ matrix.recipe }}
rechunk: true
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
registry_token: ${{ github.token }}
pr_event_number: ${{ github.event.number }}
45 changes: 45 additions & 0 deletions recipes/solarizzed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: solarizzed
description: Based on bazzite-deck

base-image: ghcr.io/ublue-os/bazzite-deck
image-version: stable

modules:
- type: files
source: shared/etc/
destination: /etc

- type: rpm-ostree
repos:
- https://copr.fedorainfracloud.org/coprs/dusansimic/themes/repo/fedora-%OS_VERSION%/dusansimic-themes-fedora-%OS_VERSION%.repo #morewaita
- https://copr.fedorainfracloud.org/coprs/sneexy/zen-browser/repo/fedora-%OS_VERSION%/sneexy-zen-browser-fedora-%OS_VERSION%.repo #zen
optfix:
- windscribe
- zen
install:
- codium
- deepin-sound-theme
- fonts-tweak-tool
- morewaita-icon-theme
- oxygen-sounds
- pop-sound-theme
- yaru-sound-theme
- zen-browser
- https://github.com/Windscribe/Desktop-App/releases/download/v2.13.8/windscribe_2.13.8_x86_64_fedora.rpm
remove:
- gnome-shell-extension-user-theme
- gnome-shell-extension-compiz-windows-effect
- gnome-shell-extension-compiz-alike-magic-lamp-effect
- gnome-shell-extension-coverflow-alt-tab
- gnome-shell-extension-blur-my-shell
- gnome-shell-extension-hanabi
- ibus-pinyin
- ibus-table-chinese-cangjie
- ibus-table-chinese-quick
- openssh-askpass

- from-file: shared/fonts.yml

- from-file: shared/script.yml

- type: signing

0 comments on commit ec43343

Please sign in to comment.