Install plasma-broser-integration; remove some scripts

This commit is contained in:
Gerald Pinder
2023-06-16 12:09:00 -04:00
parent a26fe4aa7c
commit 01563e8dbf
4 changed files with 2 additions and 19 deletions

View File

@@ -28,7 +28,7 @@ rpm:
- neofetch - neofetch
- docker - docker
- virt-manager - virt-manager
# - alsa-tools - plasma-browser-integration
remove: remove:
# Remove the native firefox (from Fedora) in favor of the Flatpak. # Remove the native firefox (from Fedora) in favor of the Flatpak.
- firefox - firefox

View File

@@ -7,7 +7,6 @@ scripts:
- autorun.sh - autorun.sh
post: post:
- autorun.sh - autorun.sh
- enable-fingerprintd.sh
rpm: rpm:
# A list of urls of ".repo" files that should be added to your system. # 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. # This is the proper way to add custom COPR repos to your image.
@@ -32,6 +31,7 @@ rpm:
- powertop - powertop
- neofetch - neofetch
- virt-manager - virt-manager
- plasma-browser-integration
remove: remove:
# Remove the native firefox (from Fedora) in favor of the Flatpak. # Remove the native firefox (from Fedora) in favor of the Flatpak.
- firefox - firefox

View File

@@ -1,7 +0,0 @@
#!/usr/bin/env bash
set -eou pipefail
# Enable fingerprintd service
sudo systemctl enable fprintd.service

View File

@@ -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'