Add launch-menu applications
This commit is contained in:
parent
afe313dc59
commit
3a5268cd02
13 changed files with 144 additions and 0 deletions
10
bash/bin/launch-menu-apps.d/base.sh
Normal file
10
bash/bin/launch-menu-apps.d/base.sh
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["LibreWolf"]="librewolf"
|
||||
["Epiphany"]="epiphany"
|
||||
["Dolphin"]="dolphin"
|
||||
["Gwenview"]="gwenview"
|
||||
["Konsole"]="konsole"
|
||||
)
|
6
bash/bin/launch-menu-apps.d/bottles.sh
Normal file
6
bash/bin/launch-menu-apps.d/bottles.sh
Normal file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["UltraISO"]="flatpak run --command=bottles-cli com.usebottles.bottles run -p UltraISO -b 'UltraISO'"
|
||||
)
|
12
bash/bin/launch-menu-apps.d/development.sh
Normal file
12
bash/bin/launch-menu-apps.d/development.sh
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["Android Studio"]="android-studio"
|
||||
["Bytecode Viewer"]="bytecodeviewer"
|
||||
["IntelliJ IDEA"]="idea"
|
||||
["Godot Engine (native)"]="godot"
|
||||
["Godot Engine 4"]="flatpak run org.godotengine.Godot"
|
||||
["Godot Engine 3"]="flatpak run org.godotengine.Godot3"
|
||||
["VSCodium"]="codium --enable-features=UseOzonePlatform,WaylandWindowDecorations --ozone-platform=wayland"
|
||||
)
|
16
bash/bin/launch-menu-apps.d/games.sh
Normal file
16
bash/bin/launch-menu-apps.d/games.sh
Normal file
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["ClassiCube"]="~/.apps/ClassiCube/ClassiCube"
|
||||
["Minetest"]="flatpak run net.minetest.Minetest"
|
||||
["osu!lazer"]="ls /tmp/osuboot-repo || git clone https://git.staropensource.de/JeremyStarTM/osuboot.git /tmp/osuboot-repo; /tmp/osuboot-repo/osuboot.sh"
|
||||
["osu!lazer (direct)"]="${HOME}/.cache/osu.AppImage"
|
||||
["Prism Launcher"]="prismlauncher"
|
||||
["Rosalie's Mupen GUI"]="flatpak run com.github.Rosalie241.RMG"
|
||||
["Sonic Robo Blast 2"]="flatpak run org.srb2.SRB2"
|
||||
["Steam"]="steam-runtime"
|
||||
["Heroic"]="flatpak run com.heroicgameslauncher.hgl"
|
||||
["Veloren (Airshipper)"]="konsole -e \"flatpak run net.veloren.airshipper update\";flatpak run net.veloren.airshipper start"
|
||||
["itch"]="flatpak run io.itch.itch"
|
||||
)
|
6
bash/bin/launch-menu-apps.d/hyprland.sh
Normal file
6
bash/bin/launch-menu-apps.d/hyprland.sh
Normal file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["Reload Hyprland"]="hyprctl reload"
|
||||
)
|
7
bash/bin/launch-menu-apps.d/info.sh
Normal file
7
bash/bin/launch-menu-apps.d/info.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["Waycheck"]="flatpak run dev.serebit.Waycheck"
|
||||
["CPU-X"]="flatpak run io.github.thetumultuousunicornofdarkness.cpu-x"
|
||||
)
|
14
bash/bin/launch-menu-apps.d/internet.sh
Normal file
14
bash/bin/launch-menu-apps.d/internet.sh
Normal file
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["Kaiteki"]="flatpak run app.kaiteki.Kaiteki"
|
||||
["Revolt"]="flatpak run chat.revolt.RevoltDesktop"
|
||||
["WhatSie"]="flatpak run com.ktechpit.whatsie"
|
||||
["Vesktop"]="flatpak run dev.vencord.Vesktop"
|
||||
["Media Downloader"]="media-downloader"
|
||||
["FileZilla"]="flatpak run org.filezillaproject.Filezilla"
|
||||
["Thunderbird"]="flatpak run org.mozilla.Thunderbird"
|
||||
["qBittorrent"]="flatpak run org.qbittorrent.qBittorrent"
|
||||
["Signal"]="flatpak run org.signal.Signal"
|
||||
)
|
15
bash/bin/launch-menu-apps.d/multimedia.sh
Normal file
15
bash/bin/launch-menu-apps.d/multimedia.sh
Normal file
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["LibreSprite"]="flatpak run com.github.libresprite.LibreSprite"
|
||||
["OBS Studio"]="obs"
|
||||
["GIMP"]="gimp"
|
||||
["mpv"]="mpv --player-operation-mode=pseudo-gui"
|
||||
["MystiQ"]="mystiq"
|
||||
["Blender"]="flatpak run org.blender.Blender"
|
||||
["Inkscape"]="flatpak run org.inkscape.Inkscape"
|
||||
["Kdenlive"]="flatpak run org.kde.kdenlive"
|
||||
["Krita"]="flatpak run org.kde.krita"
|
||||
["VLC"]="flatpak run org.videolan.VLC"
|
||||
)
|
29
bash/bin/launch-menu-apps.d/programs.sh
Normal file
29
bash/bin/launch-menu-apps.d/programs.sh
Normal file
|
@ -0,0 +1,29 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["OpenRGB"]="openrgb"
|
||||
["Companion"]="pkill companion node;sleep 5s;pkill -9 companion node;companion"
|
||||
["Cubiomes Viewer"]="flatpak run com.github.cubitect.cubiomes-viewer"
|
||||
["QR Scanner"]="flatpak run dev.lasheen.qr"
|
||||
["Cavasik"]="flatpak run io.github.TheWisker.Cavasik"
|
||||
["Mousai"]="flatpak run io.github.seadve.Mousai"
|
||||
["ISOMaster"]="isomaster"
|
||||
["Font Viewer"]="flatpak run org.gnome.font-viewer"
|
||||
["Seahorse"]="flatpak run org.gnome.seahorse.Application"
|
||||
["LibreOffice"]="flatpak run org.libreoffice.LibreOffice"
|
||||
["qBittorrent"]="flatpak run org.qbittorrent.qBittorrent"
|
||||
["Stellarium"]="flatpak run org.stellarium.Stellarium"
|
||||
["jdNBTExplorer"]="flatpak run page.codeberg.JakobDev.jdNBTExplorer"
|
||||
["Universal Android Debloater"]="uad_gui"
|
||||
["Speedtest"]="flatpak run xyz.ketok.Speedtest"
|
||||
["CraftOS PC"]="craftos-luajit"
|
||||
["Charmap"]="gucharmap"
|
||||
["Ark"]="ark"
|
||||
["Ghostwriter"]="flatpak run org.kde.ghostwriter"
|
||||
["Kalzium"]="flatpak run org.kde.kalzium"
|
||||
["KCalc"]="flatpak run org.kde.kcalc"
|
||||
["Okteta"]="flatpak run org.kde.okteta"
|
||||
["virt-manager"]="virt-manager"
|
||||
["CUPS"]="xdg-open http://localhost:631/"
|
||||
)
|
7
bash/bin/launch-menu-apps.d/template.sh.disabled
Normal file
7
bash/bin/launch-menu-apps.d/template.sh.disabled
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["Example application"]="example-application"
|
||||
["Test script"]="/home/jeremystartm/.local/bin/test-script"
|
||||
)
|
20
bash/bin/launch-menu-apps.d/tools.sh
Normal file
20
bash/bin/launch-menu-apps.d/tools.sh
Normal file
|
@ -0,0 +1,20 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
apps+=(
|
||||
["OpenRGB"]="openrgb"
|
||||
["Flatseal"]="flatpak run com.github.tchx84.Flatseal"
|
||||
["Bottles"]="flatpak run com.usebottles.bottles"
|
||||
["GParted"]="gparted"
|
||||
["GSmartControl"]="gsmartcontrol"
|
||||
["Heimdall"]="heimdall-frontend"
|
||||
["Flatsweep"]="flatpak run io.github.giantpinkrobots.flatsweep"
|
||||
["ProtonUp-Qt"]="flatpak run net.davidotek.pupgui2"
|
||||
["BleachBit"]="flatpak run org.bleachbit.BleachBit"
|
||||
["Filelight"]="flatpak run org.kde.filelight"
|
||||
["Imager"]="flatpak run org.raspberrypi.rpi-imager"
|
||||
["jdNBTExplorer"]="flatpak run page.codeberg.JakobDev.jdNBTExplorer"
|
||||
["Ventoy"]="ventoygui"
|
||||
["Cubiomes Viewer"]="flatpak run com.github.cubitect.cubiomes-viewer"
|
||||
["Winetricks"]="winetricks --gui"
|
||||
)
|
|
@ -47,6 +47,7 @@ link "bash/bashrc" ".bashrc"
|
|||
link "repositories/punktdateien-bashrc" ".bashrc.d"
|
||||
link "bash/bin/launch-menu" ".local/bin/launch-menu"
|
||||
link "bash/bin/launch-menu-apps" ".local/bin/launch-menu-apps"
|
||||
link "bash/bin/launch-menu-apps.d" ".config/launch-menu-apps.d"
|
||||
link "bash/jobrunner/daemon.sh" ".local/bin/jobrunner"
|
||||
link "bash/jobrunner/runjob.sh" ".local/bin/jobrunner-runjob"
|
||||
link "bash/starship.toml" ".config/starship.toml"
|
||||
|
|
|
@ -104,6 +104,7 @@ unlink ".local/share/mc/skins/dracula256.ini"
|
|||
unlink ".bashrc"
|
||||
unlink ".local/bin/launch-menu"
|
||||
unlink ".local/bin/launch-menu-apps"
|
||||
unlink ".config/launch-menu-apps.d"
|
||||
unlink ".local/bin/jobrunner"
|
||||
unlink ".local/bin/jobrunner-runjob"
|
||||
unlink ".config/jstmbash.env"
|
||||
|
|
Loading…
Reference in a new issue