Add mousetail gnome extension
This commit is contained in:
parent
b10bea5cfd
commit
488846ab84
2 changed files with 1 additions and 29 deletions
|
|
@ -1,25 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -oex pipefail
|
||||
set +u
|
||||
|
||||
# from RPMs on Github
|
||||
# Space-separated list of repo/package strings
|
||||
repos="quexten/goldwarden"
|
||||
|
||||
# Loop through each repo/package
|
||||
for repo_package in $repos; do
|
||||
# Split the string into repo and package using parameter expansion
|
||||
repo=${repo_package%/*}
|
||||
package=${repo_package#*/}
|
||||
|
||||
# Fetch the latest release download URL for .rpm assets
|
||||
download_url=$(wget -qO- "https://api.github.com/repos/$repo/$package/releases/latest" \
|
||||
| jq -r '.assets[] | select(.name | match(".rpm")) | .browser_download_url')
|
||||
|
||||
# Download the asset as <PACKAGE>.rpm
|
||||
wget -qO "$package.rpm" "$download_url"
|
||||
|
||||
# Install the package
|
||||
rpm-ostree install "$package.rpm"
|
||||
done
|
||||
|
|
@ -1,8 +1,4 @@
|
|||
modules:
|
||||
#Temp disable until we investigate why goldwarden is failing to install on F43
|
||||
#- type: script
|
||||
# scripts:
|
||||
# - download_install_rpms.sh
|
||||
- type: files
|
||||
files:
|
||||
- source: system/lib/firmware/
|
||||
|
|
@ -84,6 +80,7 @@ modules:
|
|||
- 1160 # Dash to Panel
|
||||
- 97 # Coverflow Alt-Tab
|
||||
- 779 # Clipboard Indicator
|
||||
- 7856 # Mouse Tail
|
||||
- type: gschema-overrides
|
||||
include:
|
||||
- zz1-power-button-settings.gschema.override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue