gaming
This commit is contained in:
@@ -1,10 +1,7 @@
|
||||
Regretevator %%% xdg-open roblox://placeId=4972273297
|
||||
Something Evil Will Happen %%% xdg-open roblox://placeId=16991287194
|
||||
Doors %%% xdg-open roblox://placeId=6516141723
|
||||
Nico's Nextbots %%% xdg-open roblox://placeId=10118559731
|
||||
Kaiju Paradise %%% xdg-open roblox://placeId=6456351776
|
||||
Pressure %%% xdg-open roblox://placeId=12411473842
|
||||
Untitled Tag Game %%% xdg-open roblox://placeId=14044547200
|
||||
Running From The Internet %%% xdg-open roblox://placeId=11195100561
|
||||
Evade %%% xdg-open roblox://placeId=9872472334
|
||||
The Foundation %%% xdg-open roblox://placeId=18186775539
|
||||
Deltarune %%% steam steam://rungameid/1671210
|
||||
Half-Life 2 %%% steam steam://rungameid/220
|
||||
Portal 2 %%% steam steam://rungameid/620
|
||||
Garry's Mod %%% steam steam://rungameid/4000
|
||||
SCP:SL %%% steam steam://rungameid/700330
|
||||
CS2 %%% steam steam://rungameid/730
|
||||
Roblox %%% hyprctl dispatch exec ~/config/scripts/open-roblox-game.sh
|
||||
|
||||
10
scripts/lib/gamesRoblox.txt
Normal file
10
scripts/lib/gamesRoblox.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
Regretevator %%% xdg-open roblox://placeId=4972273297
|
||||
Something Evil Will Happen %%% xdg-open roblox://placeId=16991287194
|
||||
Doors %%% xdg-open roblox://placeId=6516141723
|
||||
Nico's Nextbots %%% xdg-open roblox://placeId=10118559731
|
||||
Kaiju Paradise %%% xdg-open roblox://placeId=6456351776
|
||||
Pressure %%% xdg-open roblox://placeId=12411473842
|
||||
Untitled Tag Game %%% xdg-open roblox://placeId=14044547200
|
||||
Running From The Internet %%% xdg-open roblox://placeId=11195100561
|
||||
Evade %%% xdg-open roblox://placeId=9872472334
|
||||
The Foundation %%% xdg-open roblox://placeId=18186775539
|
||||
12
scripts/open-game.sh
Executable file
12
scripts/open-game.sh
Executable 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 "Play something...")
|
||||
|
||||
if [ -n "$SELECTED" ]; then
|
||||
PLACE_ID=$(echo "$GAMES" | grep "^$SELECTED" | sed 's/.*%%% //')
|
||||
if [ -n "$PLACE_ID" ]; then
|
||||
exec $PLACE_ID
|
||||
fi
|
||||
fi
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
GAMES=$(cat ~/config/scripts/lib/games.txt)
|
||||
GAMES=$(cat ~/config/scripts/lib/gamesRoblox.txt)
|
||||
|
||||
SELECTED=$(echo "$GAMES" | cut -d'%' -f1 | wofi --show dmenu -p "Play Roblox...")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user