diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..dc5d118 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @xynydev diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..1230149 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/pull.yml b/.github/pull.yml new file mode 100644 index 0000000..0fe7714 --- /dev/null +++ b/.github/pull.yml @@ -0,0 +1,6 @@ +version: "1" +rules: + - base: main + upstream: blue-build:main + mergeMethod: merge + mergeUnstable: false diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..34671de --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,37 @@ +name: bluebuild +on: + schedule: + - cron: "00 17 * * *" # build at 17:00 UTC every day + # (20 minutes after last ublue images start building) + push: + paths-ignore: # don't rebuild if only documentation has changed + - "**.md" + + pull_request: + workflow_dispatch: # allow manually triggering builds +jobs: + bluebuild: + name: Build Custom Image + 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: + # !! Add your recipes here + - recipe.yml + - recipe_vrr.yml + - recipe_nvidia.yml + - recipe_nvidia_vrr.yml + steps: + # the build is fully handled by the reusable github action + - name: Build Custom Image + uses: blue-build/github-action@v1.0.2 + with: + recipe: ${{ matrix.recipe }} + cosign_private_key: ${{ secrets.SIGNING_SECRET }} + registry_token: ${{ github.token }} + pr_event_number: ${{ github.event.number }} diff --git a/.github/workflows/release-iso.yml b/.github/workflows/release-iso.yml new file mode 100644 index 0000000..c89ea27 --- /dev/null +++ b/.github/workflows/release-iso.yml @@ -0,0 +1,46 @@ +on: + push: + paths: + - "boot_menu.yml" + - ".github/workflows/release-iso.yml" + workflow_dispatch: + +name: release-iso +jobs: + release-iso: + name: Generate and Release ISOs + runs-on: ubuntu-latest + permissions: + contents: write + container: + image: fedora:39 + options: --privileged + steps: + - uses: actions/checkout@v4 + - name: Generate ISO + uses: ublue-os/isogenerator-old@v2.3.1 + id: isogenerator + with: + image-name: ${{ github.event.repository.name }} + installer-repo: releases + installer-major-version: 39 + boot-menu-path: boot_menu.yml + - name: install github CLI + run: | + sudo dnf install 'dnf-command(config-manager)' -y + sudo dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo + sudo dnf install gh -y + - name: Upload ISO + env: + GITHUB_TOKEN: ${{ github.token }} + run: | + if gh release list -R ${{ github.repository_owner }}/${{ github.event.repository.name }} | grep "auto-iso"; then + gh release view auto-iso -R ${{ github.repository_owner }}/${{ github.event.repository.name }} --json assets -q .assets[].name | xargs --no-run-if-empty -L 1 gh release delete-asset auto-iso -R ${{ github.repository_owner }}/${{ github.event.repository.name }} + gh release upload auto-iso ${{ steps.isogenerator.outputs.iso-path }} -R ${{ github.repository_owner }}/${{ github.event.repository.name }} --clobber + else + gh release create auto-iso ${{ steps.isogenerator.outputs.iso-path }} -t ISO -n "This is an automatically generated ISO release." -R ${{ github.repository_owner }}/${{ github.event.repository.name }} + fi + - name: Upload SHA256SUM + env: + GITHUB_TOKEN: ${{ github.token }} + run: gh release upload auto-iso ${{ steps.isogenerator.outputs.sha256sum-path }} -R ${{ github.repository_owner }}/${{ github.event.repository.name }} --clobber diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8703795 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +cosign.key +cosign.private +/Containerfile diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..261eeb9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/README.md b/README.md new file mode 100644 index 0000000..f316b1a --- /dev/null +++ b/README.md @@ -0,0 +1,93 @@ +# Lazuli +## A blingy, opinionated GNOME with an i3 feel +> **Warning** +> This image is still in development and may rapidly change, you have been warned! + +[![build-ublue](https://github.com/jerbmega/lazuli/actions/workflows/build.yml/badge.svg)](https://github.com/jerbmega/lazuli/actions/workflows/build.yml) + +![](assets/bg.png) + +Lazuli is an OCI container image built off of [Universal Blue](https://universal-blue.org) that brings an opinionated, tiled set of defaults to the GNOME desktop environment. Its intent is to provide a middle ground between the keyboard-centric workflow of a tiling window manager, and the integration of a full-fledged desktop environment. By utilizing Pop Shell and custom keybinds, the goal is to feel close to home for an i3 or Sway user without sacrificing on bling or features. + +## Why? + +We are in the middle of a paradigm shift when it comes to Linux application distribution and the userspace application security model. Increasingly, apps are transitioning from an "all or nothing" permission model to a much more selective model reminiscent of a typical iOS or Android device. Without extra configuration, a tiling window manager alone cannot support these new paradigms. Many work, such as the file chooser portal, but not all do! + +A good example of this is the EasyEffects Flatpak, which requires special permissions to run in the background. On my old i3 setup, EasyEffects did *not* support this behavior. Even when installing GNOME's portal implementation and manually enabling background support in Flatseal, this doesn't work! On GNOME this works out of the box and needs no further hassle. + +We are *also* in the middle of a slow but steady transition from the antiquated X11 display server to Wayland. XWayland Video Bridge, designed purely to appease apps still stuck on X11 and not using PipeWire as their video capture mechanism, works properly on KDE and GNOME but, last I checked, has issues on Sway. That's a big downside if end-users rely on Discford or Teams or another proprietary app that will likely never adopt the new model. I hear it works on Hyprland but Hyprland won't solve the Flatpak permission problem. + +One could simply run GNOME as the DE and replace Mutter with i3... on X11. Wayland environments are fully separate compositors, and it is not possible to run GNOME but with Sway as a backend instead of Mutter. If such a thing existed, it would almost certainly be a "here be dragons" affair. I rely on my computer too much for that! + +To me, taking a standard DE and augmenting it to my usual workflow feels like the way forward, and this image is the result of my experiments in bringing this concept to fruition. Unlike my old image, which was solely a personal image, I've done my best to ensure that defaults aren't *too* tailored to my personal needs. I recognize that I'm likely not the only one in this boat, after all- the image is opinionated but I'd like this to be close to a general replacement. + +## Details +### Main changes +* Pop Shell, Blur My Shell, Just Perfection, GSConnect, AppIndicator and Space Bar shell extensions installed out of the box +* Top bar moved to the bottom to emulate a default i3 or Sway setup +* Ten static workspaces set up out of the box, with Space Bar configured to hide empty workspaces +* Pop Shell configured to have key bindings similar to (but *not* identical to) i3/Sway +* Active window set to whatever the mouse is hovered over like in i3/Sway +* Distrobox configured as the default terminal experience on `Super+Enter` + - `distrobox-assemble` is configured to automatically build the contents of `$HOME/.config/ublue/boxkit.ini` on login. If not present, the default `/usr/share/ublue-os/boxkit.ini` will be used instead + - The default config builds a Fedora distrobox with the following commands transparently passed to the host: + * docker-compose + * podman-compose + * flatpak + * podman + * rpm-ostree + * systemctl + * distrobox + * tailscale + * updatedb + * locate + * firewall-cmd +* Standard terminal mapped to `Super+Shift+Enter` + +### VRR support +An image with variable refresh rate and fractional scaling support is available under `lazuli-vrr` & `lazuli-nvidia-vrr`. + +> **Warning** +> The `lazuli-vrr` and `lazuli-nvidia-vrr` images use an unofficial fork of Mutter and other GNOME components *not supported* by GNOME upstream yet. Make sure bugs are reproduceable on vanilla Lazuli as well before submitting bug reports to GNOME! + +### Niceties +* All of the QoL features from upstream Universal Blue (Media codecs installed, OBS loopback and extra hardware-enablement kmods shipped out of the box) +* Tailscale installed and default-enabled +* Adw-gtk3 configured as the default GTK3 theme + - This will also make GTK3 Flatpak apps respect GNOME's light or dark theme setting and blend in with the rest of the environment seamlessly +* GVFS support for SMB and MTP + +### Hardware enablement +* `apcupsd`, to facilitate monitoring and additional features of supported APC uninterruptable power supplies + +## Installation + +> **Warning** +> [This is an experimental feature](https://www.fedoraproject.org/wiki/Changes/OstreeNativeContainerStable) and should not be used in production, try it in a VM for a while! + +ISO's are provided under Releases that will install Lazuli with no further hassle. + +To rebase an existing Silverblue/Kinoite installation to the latest build: + +- First rebase to the unsigned image, to get the proper signing keys and policies installed: + ``` + sudo rpm-ostree rebase ostree-unverified-registry:ghcr.io/jerbmega/lazuli:latest + ``` +- Reboot to complete the rebase: + ``` + systemctl reboot + ``` +- Then rebase to the signed image, like so: + ``` + sudo rpm-ostree rebase ostree-image-signed:docker://ghcr.io/jerbmega/lazuli:latest + ``` +- Reboot again to complete the installation + ``` + systemctl reboot + ``` + +This repository builds date tags as well, so if you want to rebase to a particular day's build: + +``` +sudo rpm-ostree rebase ostree-image-signed:docker://ghcr.io/jerbmega/lazuli:20230403 +``` diff --git a/assets/bg.png b/assets/bg.png new file mode 100644 index 0000000..a61c90a Binary files /dev/null and b/assets/bg.png differ diff --git a/boot_menu.yml b/boot_menu.yml new file mode 100644 index 0000000..491b744 --- /dev/null +++ b/boot_menu.yml @@ -0,0 +1,5 @@ +ublue_variants: + - label: blue-build/template + ks: /kickstart/ublue-os.ks + flavors: + - label: blue-build/template diff --git a/config/files/usr/etc/dconf/db/local.d/01-lazuli b/config/files/usr/etc/dconf/db/local.d/01-lazuli new file mode 100644 index 0000000..8220ff7 --- /dev/null +++ b/config/files/usr/etc/dconf/db/local.d/01-lazuli @@ -0,0 +1,197 @@ +[org/gnome/desktop/app-folders] +folder-children=['Utilities', 'YaST'] + +[org/gnome/desktop/app-folders/folders/Utilities] +apps=['gnome-abrt.desktop', 'gnome-system-log.desktop', 'nm-connection-editor.desktop', 'org.gnome.baobab.desktop', 'org.gnome.Connections.desktop', 'org.gnome.DejaDup.desktop', 'org.gnome.Dictionary.desktop', 'org.gnome.DiskUtility.desktop', 'org.gnome.eog.desktop', 'org.gnome.Evince.desktop', 'org.gnome.FileRoller.desktop', 'org.gnome.fonts.desktop', 'org.gnome.seahorse.Application.desktop', 'org.gnome.tweaks.desktop', 'org.gnome.Usage.desktop', 'vinagre.desktop'] +categories=['X-GNOME-Utilities'] +name='X-GNOME-Utilities.directory' +translate=true + +[org/gnome/desktop/app-folders/folders/YaST] +categories=['X-SuSE-YaST'] +name='suse-yast.directory' +translate=true + +[org/gnome/desktop/background] +color-shading-type='solid' +picture-options='zoom' +picture-uri='file:///usr/share/backgrounds/gnome/blobs-l.svg' +picture-uri-dark='file:///usr/share/backgrounds/gnome/blobs-d.svg' +primary-color='#241f31' +secondary-color='#000000' + +[org/gnome/desktop/input-sources] +sources=[('xkb', 'us')] +xkb-options=['lv3:ralt_switch'] + +[org/gnome/desktop/interface] +color-scheme='prefer-dark' +enable-animations=true +enable-hot-corners=false +font-antialiasing='rgba' +font-hinting='slight' +gtk-theme='adw-gtk3-dark' +show-battery-percentage=true + +[org/gnome/desktop/notifications] +application-children=['org-gnome-nautilus', 'org-pulseaudio-pavucontrol', 'org-gnome-settings'] + +[org/gnome/desktop/notifications/application/org-gnome-nautilus] +application-id='org.gnome.Nautilus.desktop' + +[org/gnome/desktop/notifications/application/org-gnome-settings] +application-id='org.gnome.Settings.desktop' + +[org/gnome/desktop/notifications/application/org-pulseaudio-pavucontrol] +application-id='org.pulseaudio.pavucontrol.desktop' + +[org/gnome/desktop/peripherals/keyboard] +numlock-state=true + +[org/gnome/desktop/peripherals/touchpad] +two-finger-scrolling-enabled=true + +[org/gnome/desktop/screensaver] +color-shading-type='solid' +picture-options='zoom' +picture-uri='file:///usr/share/backgrounds/gnome/blobs-l.svg' +primary-color='#241f31' +secondary-color='#000000' + +[org/gnome/desktop/search-providers] +sort-order=['org.gnome.Contacts.desktop', 'org.gnome.Documents.desktop', 'org.gnome.Nautilus.desktop'] + +[org/gnome/desktop/wm/keybindings] +close=['q'] +move-to-workspace-1=['1'] +move-to-workspace-10=['0'] +move-to-workspace-2=['2'] +move-to-workspace-3=['3'] +move-to-workspace-4=['4'] +move-to-workspace-5=['5'] +move-to-workspace-6=['6'] +move-to-workspace-7=['7'] +move-to-workspace-8=['8'] +move-to-workspace-9=['9'] +switch-input-source=@as [] +switch-input-source-backward=@as [] +toggle-fullscreen=['f'] + +[org/gnome/desktop/wm/preferences] +button-layout='appmenu:close' +focus-mode='sloppy' +num-workspaces=10 + +[org/gnome/evolution-data-server] +migrated=true + +[org/gnome/login-screen] +enable-fingerprint-authentication=false +enable-password-authentication=true +enable-smartcard-authentication=false + +[org/gnome/mutter] +dynamic-workspaces=false +edge-tiling=false +overlay-key='Super_R' + +[org/gnome/mutter/keybindings] +toggle-tiled-left=@as [] +toggle-tiled-right=@as [] + +[org/gnome/nautilus/list-view] +use-tree-view=false + +[org/gnome/nautilus/preferences] +default-folder-viewer='icon-view' +migrated-gtk-settings=true +search-filter-time-type='last_modified' +search-view='list-view' + +[org/gnome/settings-daemon/plugins/media-keys] +custom-keybindings=['/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/', '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1/'] +email=@as [] +help=@as [] +home=@as [] +logout=['e'] +screensaver=['x'] +www=@as [] + +[org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0] +binding='Return' +command='gnome-terminal' +name='Standard Terminal' + +[org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1] +binding='Return' +command='gnome-terminal -- distrobox enter boxkit' +name='Boxkit Terminal' + +[org/gnome/terminal/legacy/profiles:/:b1dcc9dd-5262-4d8d-a863-c897e6d979b9] +background-transparency-percent=15 +use-transparent-background=true + +[org/gnome/shell] +disable-user-extensions=false +enabled-extensions=['appindicatorsupport@rgcjonas.gmail.com', 'blur-my-shell@aunetx', 'gsconnect@andyholmes.github.io', 'just-perfection-desktop@just-perfection', 'launch-new-instance@gnome-shell-extensions.gcampax.github.com', 'pop-shell@system76.com', 'system-monitor@paradoxxx.zero.gmail.com', 'space-bar@luchrioh'] + +[org/gnome/shell/extensions/pop-shell] +active-hint=false +gap-outer=uint32 0 +pop-monitor-left=@as [] +pop-monitor-right=@as [] +pop-workspace-down=@as [] +pop-workspace-up=@as [] +smart-gaps=false +tile-by-default=true +tile-enter=['r'] +tile-move-down=@as [] +tile-move-down-global=['Down'] +tile-move-left=@as [] +tile-move-left-global=['Left'] +tile-move-right=@as [] +tile-move-right-global=['Right'] +tile-move-up=@as [] +tile-move-up-global=['Up'] +toggle-floating=['space'] + +[org/gnome/shell/extensions/just-perfection] +theme=true +top-panel-position=1 + +[org/gnome/shell/extensions/space-bar/behavior] +show-empty-workspaces=false +smart-workspace-names=false + +[org/gnome/shell/extensions/space-bar/shortcuts] +enable-move-to-workspace-shortcuts=true + +[org/gnome/shell/extensions/system-monitor] +center-display=false +compact-display=false +cpu-display=true +cpu-individual-cores=false +cpu-style='graph' +disk-display=false +freq-display=false +freq-style='graph' +gpu-display=false +memory-style='graph' +move-clock=false +net-display=false +net-style='graph' +show-on-lockscreen=true +thermal-display=false + +[org/gnome/shell/extensions/window-list] +display-all-workspaces=false +show-on-all-monitors=false + +[org/gnome/shell/keybindings] +toggle-overview=['d'] + +[org/gnome/software] +first-run=true + +[org/gnome/tweaks] +show-extensions-notice=false diff --git a/config/files/usr/etc/update.d/90-mozilla-gnome-themes.sh b/config/files/usr/etc/update.d/90-mozilla-gnome-themes.sh new file mode 100644 index 0000000..010a876 --- /dev/null +++ b/config/files/usr/etc/update.d/90-mozilla-gnome-themes.sh @@ -0,0 +1,18 @@ +#!/usr/bin/bash +shopt -s nullglob + +# Flatpak Firefox +for firefox_gnome_theme in "$HOME/.var/app/org.mozilla.firefox/.mozilla/firefox/"*".default"*"/chrome/firefox-gnome-theme/"; do + if [ -d "$firefox_gnome_theme" ]; then + cd "$firefox_gnome_theme" + git pull origin master + fi +done + +# Flatpak Thunderbird +for thunderbird_gnome_theme in "$HOME/.var/app/org.mozilla.Thunderbird/.thunderbird/"*".default"*"/chrome/thunderbird-gnome-theme/"; do + if [ -d "$thunderbird_gnome_theme" ]; then + cd "$thunderbird_gnome_theme" + git pull origin master + fi +done diff --git a/config/files/usr/etc/xdg/autostart/boxkit-assemble.desktop b/config/files/usr/etc/xdg/autostart/boxkit-assemble.desktop new file mode 100644 index 0000000..15aa5ea --- /dev/null +++ b/config/files/usr/etc/xdg/autostart/boxkit-assemble.desktop @@ -0,0 +1,7 @@ +[Desktop Entry] +Type=Application +Name=Assemble Boxkit +Exec=/usr/bin/just --unstable assemble +OnlyShowIn=GNOME; +X-GNOME-Autostart-enabled=true +NoDisplay=true \ No newline at end of file diff --git a/config/files/usr/share/ublue-os/boxkit.ini b/config/files/usr/share/ublue-os/boxkit.ini new file mode 100644 index 0000000..702b6e4 --- /dev/null +++ b/config/files/usr/share/ublue-os/boxkit.ini @@ -0,0 +1,16 @@ +[boxkit] +image=registry.fedoraproject.org/fedora-toolbox:38 +pull=true +start_now=false +replace=true +init_hooks=ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/docker-compose && +init_hooks=ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/podman-compose && +init_hooks=ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/flatpak && +init_hooks=ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/podman && +init_hooks=ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/rpm-ostree && +init_hooks=ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/systemctl && +init_hooks=ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/distrobox && +init_hooks=ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/tailscale && +init_hooks=ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/updatedb && +init_hooks=ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/locate && +init_hooks=ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/firewall-cmd diff --git a/config/files/usr/share/ublue-os/just/60-custom.just b/config/files/usr/share/ublue-os/just/60-custom.just new file mode 100644 index 0000000..dee8751 --- /dev/null +++ b/config/files/usr/share/ublue-os/just/60-custom.just @@ -0,0 +1,12 @@ +!import /usr/share/ublue-os/just/100-bling.just + +assemble: + #!/usr/bin/env bash + echo 'Assembling distrobox...' + notify-send 'Distrobox terminal is being assembled...' + if [[ -f "$HOME/.config/ublue/boxkit.ini" ]]; then + distrobox assemble create --replace --file "$HOME/.config/ublue/boxkit.ini" + else + distrobox assemble create --replace --file /usr/share/ublue-os/boxkit.ini + fi + notify-send 'Distrobox terminal has been assembled!' diff --git a/config/module-shared-akmods.yml b/config/module-shared-akmods.yml new file mode 100644 index 0000000..cbb2411 --- /dev/null +++ b/config/module-shared-akmods.yml @@ -0,0 +1,6 @@ +type: akmods +install: + - openrgb + - v4l2loopback + - winesync + - zenpower3 diff --git a/config/module-shared-bling.yml b/config/module-shared-bling.yml new file mode 100644 index 0000000..8a8e697 --- /dev/null +++ b/config/module-shared-bling.yml @@ -0,0 +1,4 @@ +type: bling +install: + - ublue-update + - dconf-update-service diff --git a/config/module-shared-files.yml b/config/module-shared-files.yml new file mode 100644 index 0000000..2bc8176 --- /dev/null +++ b/config/module-shared-files.yml @@ -0,0 +1,3 @@ +type: files +files: + - usr: /usr diff --git a/config/module-shared-rpm-ostree.yml b/config/module-shared-rpm-ostree.yml new file mode 100644 index 0000000..e9e079f --- /dev/null +++ b/config/module-shared-rpm-ostree.yml @@ -0,0 +1,18 @@ +type: rpm-ostree +repos: + - https://pkgs.tailscale.com/stable/fedora/tailscale.repo + - https://copr.fedorainfracloud.org/coprs/jerbear64/lazuli-rpms/repo/fedora-39/jerbear64-lazuli-rpms-fedora-39.repo +install: + - apcupsd + - gnome-shell-extension-gsconnect + - gnome-shell-extension-blur-my-shell + - gnome-shell-extension-appindicator + - gnome-shell-extension-just-perfection + - gnome-shell-extension-pop-shell + - gnome-shell-extension-space-bar + - python3-pip + - tailscale + +remove: + - firefox + - firefox-langpacks diff --git a/config/module-shared-scripts.yml b/config/module-shared-scripts.yml new file mode 100644 index 0000000..4e827af --- /dev/null +++ b/config/module-shared-scripts.yml @@ -0,0 +1,5 @@ +type: script +scripts: + - delete_residuals.sh + - enable_services.sh + - remove_gnome_extensions_app.sh diff --git a/config/module-shared-signing.yml b/config/module-shared-signing.yml new file mode 100644 index 0000000..c496773 --- /dev/null +++ b/config/module-shared-signing.yml @@ -0,0 +1 @@ +type: signing diff --git a/config/module-shared-vrr.yml b/config/module-shared-vrr.yml new file mode 100644 index 0000000..96661e3 --- /dev/null +++ b/config/module-shared-vrr.yml @@ -0,0 +1,3 @@ +type: bling +install: + - gnome-vrr diff --git a/config/recipe.yml b/config/recipe.yml new file mode 100644 index 0000000..261e901 --- /dev/null +++ b/config/recipe.yml @@ -0,0 +1,12 @@ +name: lazuli +description: A blingy, opinionated GNOME with an i3 feel + +base-image: ghcr.io/ublue-os/silverblue-main +image-version: 39 +modules: + - from-file: module-shared-rpm-ostree.yml + - from-file: module-shared-files.yml + - from-file: module-shared-bling.yml + - from-file: module-shared-yafti.yml + - from-file: module-shared-scripts.yml + - from-file: module-shared-signing.yml diff --git a/config/recipe_nvidia.yml b/config/recipe_nvidia.yml new file mode 100644 index 0000000..d08a559 --- /dev/null +++ b/config/recipe_nvidia.yml @@ -0,0 +1,12 @@ +name: lazuli-nvidia +description: A blingy, opinionated GNOME with an i3 feel + +base-image: ghcr.io/ublue-os/silverblue-nvidia +image-version: 39 +modules: + - from-file: module-shared-rpm-ostree.yml + - from-file: module-shared-files.yml + - from-file: module-shared-bling.yml + - from-file: module-shared-yafti.yml + - from-file: module-shared-scripts.yml + - from-file: module-shared-signing.yml diff --git a/config/recipe_nvidia_vrr.yml b/config/recipe_nvidia_vrr.yml new file mode 100644 index 0000000..258aedf --- /dev/null +++ b/config/recipe_nvidia_vrr.yml @@ -0,0 +1,13 @@ +name: lazuli-nvidia-vrr +description: A blingy, opinionated GNOME with an i3 feel + +base-image: ghcr.io/ublue-os/silverblue-nvidia +image-version: 39 +modules: + - from-file: module-shared-rpm-ostree.yml + - from-file: module-shared-files.yml + - from-file: module-shared-bling.yml + - from-file: module-shared-yafti.yml + - from-file: module-shared-scripts.yml + - from-file: module-shared-signing.yml + - from-file: module-shared-vrr.yml diff --git a/config/recipe_vrr.yml b/config/recipe_vrr.yml new file mode 100644 index 0000000..3003c54 --- /dev/null +++ b/config/recipe_vrr.yml @@ -0,0 +1,13 @@ +name: lazuli-vrr +description: A blingy, opinionated GNOME with an i3 feel + +base-image: ghcr.io/ublue-os/silverblue-main +image-version: 39 +modules: + - from-file: module-shared-rpm-ostree.yml + - from-file: module-shared-files.yml + - from-file: module-shared-bling.yml + - from-file: module-shared-yafti.yml + - from-file: module-shared-scripts.yml + - from-file: module-shared-signing.yml + - from-file: module-shared-vrr.yml diff --git a/config/scripts/delete_residuals.sh b/config/scripts/delete_residuals.sh new file mode 100644 index 0000000..f8e375a --- /dev/null +++ b/config/scripts/delete_residuals.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +set -oue pipefail + +# People that need these tools can just invoke them through CLI, they don't need to appear in GNOME. +rm -f /usr/share/applications/htop.desktop +rm -f /usr/share/applications/nvtop.desktop diff --git a/config/scripts/enable_services.sh b/config/scripts/enable_services.sh new file mode 100644 index 0000000..2014e3a --- /dev/null +++ b/config/scripts/enable_services.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash +set -oue pipefail + +systemctl enable tailscaled.service diff --git a/config/scripts/remove_gnome_extensions_app.sh b/config/scripts/remove_gnome_extensions_app.sh new file mode 100644 index 0000000..c22c40d --- /dev/null +++ b/config/scripts/remove_gnome_extensions_app.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash +set -oue pipefail + +rpm-ostree override remove gnome-extensions-app + diff --git a/cosign.pub b/cosign.pub new file mode 100644 index 0000000..7b19936 --- /dev/null +++ b/cosign.pub @@ -0,0 +1,4 @@ +-----BEGIN PUBLIC KEY----- +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEX/5ahVaoVxXAA9Tdk/CWxn482mqb +0T5j7QjngCdZjqdMb2FuUvi7zD1lYI+rCt+D3ALE69uaQGouVBGAhMWJ9w== +-----END PUBLIC KEY----- diff --git a/modules/.gitkeep b/modules/.gitkeep new file mode 100644 index 0000000..e69de29