#!/bin/sh
# Copyright (c) 2019-2021 Sebastian LaVine <mail@smlavine.com>
# Licensed under the MIT license. See MIT.txt for details.
#
# File: intlkey
# Description: Toggles between the US and US INTL keyboard layouts.
if [ "$(setxkbmap -query | grep variant | awk '{print $2}')" = "intl" ]
then
setxkbmap us
else
setxkbmap us -variant intl
fi