diff --git a/recipe-desktop.yml b/recipe-desktop.yml index 56a73e7..7940641 100644 --- a/recipe-desktop.yml +++ b/recipe-desktop.yml @@ -28,7 +28,7 @@ rpm: - neofetch - docker - virt-manager - # - alsa-tools + - plasma-browser-integration remove: # Remove the native firefox (from Fedora) in favor of the Flatpak. - firefox diff --git a/recipe-framework.yml b/recipe-framework.yml index 7d7150c..9223055 100644 --- a/recipe-framework.yml +++ b/recipe-framework.yml @@ -7,7 +7,6 @@ scripts: - autorun.sh post: - autorun.sh - - enable-fingerprintd.sh rpm: # A list of urls of ".repo" files that should be added to your system. # This is the proper way to add custom COPR repos to your image. @@ -32,6 +31,7 @@ rpm: - powertop - neofetch - virt-manager + - plasma-browser-integration remove: # Remove the native firefox (from Fedora) in favor of the Flatpak. - firefox diff --git a/scripts/enable-fingerprintd.sh b/scripts/enable-fingerprintd.sh deleted file mode 100644 index 1b70836..0000000 --- a/scripts/enable-fingerprintd.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash - -set -eou pipefail - -# Enable fingerprintd service - -sudo systemctl enable fprintd.service \ No newline at end of file diff --git a/scripts/example.sh b/scripts/example.sh deleted file mode 100644 index fdb2e04..0000000 --- a/scripts/example.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/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 - -# Your code goes here. -echo 'This is an example shell script' -echo 'Scripts here will run during build if specified in recipe.yml'