added the ability to launch regretevator faster than before with a keybind
This commit is contained in:
8
scripts/lib/games.txt
Normal file
8
scripts/lib/games.txt
Normal 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
|
||||
12
scripts/open-roblox-game.sh
Normal file
12
scripts/open-roblox-game.sh
Normal 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
|
||||
Reference in New Issue
Block a user