Compare commits

...

2 Commits

Author SHA1 Message Date
ce14e6fce0 Install codium into image
All checks were successful
bluebuild / Build Custom Image (recipe.yml) (pull_request) Successful in 10m1s
2025-06-28 20:30:13 -04:00
c879c0f149 change xpadneo install script name to be inline with other script names 2025-06-28 20:22:48 -04:00
4 changed files with 21 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
# Tell build process to exit if there are any errors.
set -oue pipefail
# import keys
sudo rpmkeys --import https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg
# create file called vscodium.repo and setup file to possess
printf "[gitlab.com_paulcarroty_vscodium_repo]\nname=download.vscodium.com\nbaseurl=https://download.vscodium.com/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg\nmetadata_expire=1h\n" | sudo tee -a /etc/yum.repos.d/vscodium.repo

View File

@@ -35,4 +35,4 @@ modules:
- type: script - type: script
scripts: scripts:
- install-xpadneo.sh - installxpadneo.sh

View File

@@ -1,4 +1,8 @@
modules: modules:
- type: script
scripts:
- setupcodiumrepo.sh
- type: rpm-ostree - type: rpm-ostree
install: install:
# applications # applications
@@ -13,8 +17,9 @@ modules:
- file-roller - file-roller
- file-roller-nautilus - file-roller-nautilus
# text editor # text editors
- neovim - neovim
- codium
# software store # software store
- gnome-software - gnome-software
@@ -37,4 +42,7 @@ modules:
- zsh - zsh
# zoxide for z stuff # zoxide for z stuff
- zoxide - zoxide
- type: script
snippets:
- "sudo rm /etc/yum.repos.d/vscodium.repo"