mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-19 07:19:59 -05:00
15 lines
253 B
Bash
Executable File
15 lines
253 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
appname=$1
|
|
|
|
if [[ "$1" == "code-url-handler" ]];then
|
|
echo 'code'
|
|
elif [[ "$1" == "gnome-tweaks" ]];then
|
|
echo 'org.gnome.tweaks'
|
|
elif [[ "$1" == "org."* ]];then
|
|
appname="${appname#*.}"
|
|
appname="${appname#*.}"
|
|
echo $appname
|
|
fi
|
|
|