You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
354 B
26 lines
354 B
4 years ago
|
#!/usr/bin/env sh
|
||
|
if [ -z "$1" ]; then
|
||
|
exit 1
|
||
|
else
|
||
|
CORNER="$1"
|
||
|
fi
|
||
|
|
||
|
if [ -x "$XDG_CONFIG_HOME/sxmo/hooks/hotcorner_$CORNER" ]; then
|
||
|
"$XDG_CONFIG_HOME/sxmo/hooks/hotcorner_$CORNER"
|
||
|
exit $?
|
||
|
fi
|
||
|
|
||
|
case "$CORNER" in
|
||
|
"topleft")
|
||
|
sxmo_appmenu.sh sys &
|
||
|
;;
|
||
|
"topright")
|
||
|
;;
|
||
|
"bottomleft")
|
||
|
sxmo_lock.sh &
|
||
|
;;
|
||
|
"bottomright")
|
||
|
sxmo_rotate.sh &
|
||
|
;;
|
||
|
esac
|