added the ability to launch regretevator faster than before with a keybind

This commit is contained in:
2025-04-12 21:51:22 +03:00
parent 5b79fede8e
commit b8881770a6
5 changed files with 29 additions and 3 deletions

8
scripts/lib/games.txt Normal file
View File

@@ -0,0 +1,8 @@
Regretevator %%% xdg-open roblox://placeId=4972273297
Untitled Tag Game %%% xdg-open roblox://placeId=14044547200
Doors %%% xdg-open roblox://placeId=6516141723
Pressure %%% xdg-open roblox://placeId=12411473842
The Foundation %%% xdg-open roblox://placeId=18186775539
Evade %%% xdg-open roblox://placeId=9872472334
Nico's Nextbots %%% xdg-open roblox://placeId=10118559731
Running From The Internet %%% xdg-open roblox://placeId=11195100561

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
GAMES=$(cat ~/config/scripts/lib/games.txt)
SELECTED=$(echo "$GAMES" | cut -d'%' -f1 | wofi --show dmenu -p "Launch Roblox...")
if [ -n "$SELECTED" ]; then
PLACE_ID=$(echo "$GAMES" | grep "^$SELECTED" | sed 's/.*%%% //')
if [ -n "$PLACE_ID" ]; then
exec $PLACE_ID
fi
fi