mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-02-04 03:39:58 +00:00
feat: Add option to download Wootility to Bazzite Portal.
This commit is contained in:
parent
27df00ef4c
commit
d171b8fd26
@ -81,6 +81,11 @@ screens:
|
||||
default: false
|
||||
packages:
|
||||
- Install Solaar: just --unstable install-solaar
|
||||
Wootility:
|
||||
description: A configurator for Wooting keyboards
|
||||
default: false
|
||||
packages:
|
||||
- Retrieve Wootility: just --unstable get-wootility
|
||||
Resilio Sync:
|
||||
description: A file synchronization utility powered by BitTorrent
|
||||
default: false
|
||||
|
@ -98,13 +98,24 @@ install-fleek-themes:
|
||||
get-greenlight:
|
||||
#!/usr/bin/env bash
|
||||
if grep -q 'it.mijorus.gearlever' <<< $(flatpak list); then
|
||||
wget https://github.com/unknownskl/greenlight/releases/download/v2.0.0-beta12/Greenlight-2.0.0-beta12.AppImage -O $HOME/Downloads/Greenlight.AppImage
|
||||
wget "https://github.com/unknownskl/greenlight/releases/download/v2.0.0-beta12/Greenlight-2.0.0-beta12.AppImage" -O $HOME/Downloads/Greenlight.AppImage
|
||||
flatpak run it.mijorus.gearlever $HOME/Downloads/Greenlight.AppImage
|
||||
else
|
||||
wget https://github.com/unknownskl/greenlight/releases/download/v2.0.0-beta12/Greenlight-2.0.0-beta12.AppImage -O $HOME/Desktop/Greenlight.AppImage
|
||||
wget "https://github.com/unknownskl/greenlight/releases/download/v2.0.0-beta12/Greenlight-2.0.0-beta12.AppImage" -O $HOME/Desktop/Greenlight.AppImage
|
||||
chmod +x $HOME/Desktop/Greenlight.AppImage
|
||||
fi
|
||||
|
||||
# Install Wootility for configuring Wooting Keyboards
|
||||
get-wootility:
|
||||
#!/usr/bin/env bash
|
||||
if grep -q 'it.mijorus.gearlever' <<< $(flatpak list); then
|
||||
wget "https://api.wooting.io/public/wootility/download?os=linux&branch=lekker" -O $HOME/Downloads/wootility.AppImage
|
||||
flatpak run it.mijorus.gearlever $HOME/Downloads/wootility.AppImage
|
||||
else
|
||||
wget "https://api.wooting.io/public/wootility/download?os=linux&branch=lekker" -O $HOME/Desktop/wootility.AppImage
|
||||
chmod +x $HOME/Desktop/wootility.AppImage
|
||||
fi
|
||||
|
||||
# Install BoilR, a Steam Library and art management tool
|
||||
get-boilr:
|
||||
#!/usr/bin/env bash
|
||||
|
@ -62,6 +62,11 @@ screens:
|
||||
default: false
|
||||
packages:
|
||||
- Install Solaar: just --unstable install-solaar
|
||||
Wootility:
|
||||
description: A configurator for Wooting keyboards
|
||||
default: false
|
||||
packages:
|
||||
- Retrieve Wootility: just --unstable get-wootility
|
||||
Resilio Sync:
|
||||
description: A file synchronization utility powered by BitTorrent
|
||||
default: false
|
||||
|
@ -80,6 +80,17 @@ get-greenlight:
|
||||
chmod +x $HOME/Desktop/Greenlight.AppImage
|
||||
fi
|
||||
|
||||
# Install Wootility for configuring Wooting Keyboards
|
||||
get-wootility:
|
||||
#!/usr/bin/env bash
|
||||
if grep -q 'it.mijorus.gearlever' <<< $(flatpak list); then
|
||||
wget "https://api.wooting.io/public/wootility/download?os=linux&branch=lekker" -O $HOME/Downloads/wootility.AppImage
|
||||
flatpak run it.mijorus.gearlever $HOME/Downloads/wootility.AppImage
|
||||
else
|
||||
wget "https://api.wooting.io/public/wootility/download?os=linux&branch=lekker" -O $HOME/Desktop/wootility.AppImage
|
||||
chmod +x $HOME/Desktop/wootility.AppImage
|
||||
fi
|
||||
|
||||
# Enable Supergfxctl, a Nvidia GPU switcher for hybrid laptops
|
||||
enable-supergfxctl:
|
||||
#!/usr/bin/env bash
|
||||
|
Loading…
x
Reference in New Issue
Block a user