From 01563e8dbfb3c0cbf5b3f5de9dbca2d98c4ac846 Mon Sep 17 00:00:00 2001 From: Gerald Pinder <4626052+gmpinder@users.noreply.github.com> Date: Fri, 16 Jun 2023 12:09:00 -0400 Subject: [PATCH] Install plasma-broser-integration; remove some scripts --- recipe-desktop.yml | 2 +- recipe-framework.yml | 2 +- scripts/enable-fingerprintd.sh | 7 ------- scripts/example.sh | 10 ---------- 4 files changed, 2 insertions(+), 19 deletions(-) delete mode 100644 scripts/enable-fingerprintd.sh delete mode 100644 scripts/example.sh 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'