blob: f1c53ba04e7b192cd28c4069909e610b6cba664c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# goto root dir (this script resides in src)
BASEDIR=`dirname $(readlink -f $0)`
cd ${BASEDIR}/../
diff -ur home/.XCompose src/xcompose/dotXCompose
rm -f home/.XCompose
cp src/xcompose/dotXCompose home/.XCompose
|