diff options
Diffstat (limited to 'linux')
-rwxr-xr-x | linux/bin/neo-compose | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/linux/bin/neo-compose b/linux/bin/neo-compose index 2f31bfb..b5e7f33 100755 --- a/linux/bin/neo-compose +++ b/linux/bin/neo-compose @@ -40,5 +40,10 @@ elif [ ! "a${NEO_OWN_COMPOSE}" = "a" ]; then fi fi -cat "${NEO_ORIG_COMPOSE}" "${NEO_COMPOSE}" "${NEO_OWN_COMPOSE}" > ~/.XCompose +if [ ! "a${NEO_OWN_COMPOSE}" = "a" ]; then + cat "${NEO_ORIG_COMPOSE}" "${NEO_COMPOSE}" "${NEO_OWN_COMPOSE}" > ~/.XCompose +else + cat "${NEO_ORIG_COMPOSE}" "${NEO_COMPOSE}" > ~/.XCompose +fi + |