Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
alextrical committed Dec 5, 2023
1 parent f475223 commit 37d031f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
3 changes: 2 additions & 1 deletion config/recipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ modules:
# add "!include /usr/share/ublue-os/just/100-bling.just"
# in your custom.just (added by default) or local justfile
- nix-installer # shell shortcuts for determinate system's nix installers
- ublue-os-wallpapers
# - ublue-os-wallpapers
# - ublue-update # https://github.com/ublue-os/ublue-update
# - 1password # install 1Password (stable) and `op` CLI tool
# - dconf-update-service # a service unit that updates the dconf db on boot
Expand All @@ -74,6 +74,7 @@ modules:
- inkscape.sh
- lightburn.sh
- sheetcam.sh
- appimagelauncher.sh
# this sets up the proper policy & signing files for signed images to work
- signing.sh

15 changes: 15 additions & 0 deletions config/scripts/appimagelauncher.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env bash

# Tell this script to exit if there are any errors.
# You should have this in every custom script, to ensure that your completed
# builds actually ran successfully without any errors!
set -oue pipefail

# This script grabs the latest AppImageLauncher release
curl -s https://api.github.com/repos/TheAssassin/AppImageLauncher/releases/latest \
| grep "browser_download_url.*x86_64.rpm" \
| cut -d : -f 2,3 \
| tr -d \" \
| xargs wget - -O /tmp/appimagelauncher.x86_64.rpm
rpm-ostree install /tmp/appimagelauncher.x86_64.rpm
rm /tmp/appimagelauncher.x86_64.rpm
2 changes: 1 addition & 1 deletion config/scripts/sheetcam.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -oue pipefail
# Your code goes here.
#SheetCAM
wget https://www.sheetcam.com/Downloads/akp3fldwqh/SheetCam_setupV7.1.35-64.bin --show-progress -nc -q -P /tmp
unzip /tmp/SheetCam_setupV7.1.35-64.bin "data/*" -d /usr/share/SheetCam
# unzip /tmp/SheetCam_setupV7.1.35-64.bin "data/*" -d /usr/share/SheetCam
cat > /usr/share/applications/SheetCAM.desktop << EOF
[Desktop Entry]
Encoding=UTF-8
Expand Down

0 comments on commit 37d031f

Please sign in to comment.