kragen / xcompose

for sharing .XCompose keybindings

This URL has Read+Write access

xcompose / install
100755 16 lines (12 sloc) 0.299 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
set -e
if [ -f ~/.XCompose ]; then
cat <<'EOF' >&2
You already have a `~/.XCompose`. Move it out of the way.
 
You may want to merge it into this file, taking care to avoid
duplicates.
 
Kragen Javier Sitaker <kragen@canonical.org>
 
EOF
exit 1
fi
ln -s "$(pwd)/dotXCompose" ~/.XCompose