dotfiles/bin/sway
2020-12-19 17:01:26 +01:00

14 lines
283 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
[ -f ~/.xdg_set_env.sh ] && . ~/.xdg_set_env.sh
/usr/bin/sway $*