mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-12-23 11:12:48 +01:00
12 lines
319 B
Bash
Executable File
12 lines
319 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -x
|
|
|
|
# This assumes the usage of GearLever with the default directory.
|
|
if [ -f ~/AppImages/beeper.appimage ]; then
|
|
~/AppImages/beeper.appimage --ozone-platform=wayland --enable-features=WaylandWindowDecorations "$@"
|
|
else
|
|
print "Beeper not found :("
|
|
notify-send "Beeper not found :("
|
|
fi
|
|
set +x
|