dotfiles/bin/sway
2021-09-12 12:24:06 +02:00

13 lines
237 B
Bash
Executable file

#!/bin/sh
set -euo pipefail
IFS=$'\n\t'
COMPOSE_KEY_FILE="$HOME/.compose_key"
if [ -f "$COMPOSE_KEY_FILE" ]; then
COMPOSE_KEY=$(cat "$COMPOSE_KEY_FILE")
export XKB_DEFAULT_OPTIONS="compose:$COMPOSE_KEY"
fi
/usr/bin/sway "$@"