spiegel-keyman/linux/ibus-keyman/tests/scripts/test-helper.sh

11 lines
229 B
Bash
Executable file

#!/usr/bin/env bash
function can_run_wayland() {
local MUTTER_VERSION
MUTTER_VERSION=$(mutter --version | head -1 | cut -f2 -d' ' | cut -f1 -d'.')
if (( MUTTER_VERSION < 40 )); then
return 1
else
return 0
fi
}