summaryrefslogtreecommitdiffstats
path: root/linux/bin/erzeuge_installation/installiere_neo.2
diff options
context:
space:
mode:
authorben <ben@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2009-01-05 15:40:07 +0000
committerben <ben@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2009-01-05 15:40:07 +0000
commitac663d5d7fc48e545710d058dd2a01799914d567 (patch)
treee3e013dbf685aef44b60f683f8b67a1a81c26a78 /linux/bin/erzeuge_installation/installiere_neo.2
parent98d5fe8c8cc1808dd57e535beae0d95356dc6a00 (diff)
Makefile für installiere_neo hinzugefügt
git-svn-id: https://svn.neo-layout.org@1381 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'linux/bin/erzeuge_installation/installiere_neo.2')
-rw-r--r--linux/bin/erzeuge_installation/installiere_neo.263
1 files changed, 0 insertions, 63 deletions
diff --git a/linux/bin/erzeuge_installation/installiere_neo.2 b/linux/bin/erzeuge_installation/installiere_neo.2
deleted file mode 100644
index d6b858d..0000000
--- a/linux/bin/erzeuge_installation/installiere_neo.2
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/bin/bash
-
-profile_neo() {
-cat <<PROFIL
-
-# NEO:
-PATH=\$PATH:$inst_dir/ # für asdf und uiae
-export PATH # für asdf und uiae
-asdf # mit einem # am Zeilenanfang bleibt QWERTZ das Standardlayout, sonst ist es NEO
-PROFIL
-}
-
-profile_qwertz() {
-cat <<PROFIL
-
-# NEO:
-PATH=\$PATH:$inst_dir/ # für asdf und uiae
-export PATH # für asdf und uiae
-# asdf # mit einem # am Zeilenanfang bleibt QWERTZ das Standardlayout, sonst ist es NEO
-PROFIL
-}
-
-neo_path() {
-cat <<NEO_PATH
-PATH=$PATH:$inst_dir
-export PATH
-echo "Die Belegung wird nun auf NEO geändert…"
-asdf
-NEO_PATH
-}
-
-# *** main program ***
-clear
-echo
-echo " *** NEO – Ergonomie und Zeichenvielfalt ***"
-echo
-echo
-echo " Ihr System wird untersucht…"
-echo
-
-# check for an existing neo configuration
-if [ -f "${NEO_CONFIG}" ]; then
- . "${NEO_CONFIG}" || die "Failed to source ${NEO_CONFIG}"
-elif [ -f "${HOME}"/.neorc ]; then
- . "${HOME}"/.neorc || die "Failed to source ${HOME}/.neorc"
-elif [ -f /etc/neo.conf ]; then
- . /etc/neo.conf || die "Failed to source /etc/neo.conf"
-else
-
-# no configuration file found → install NEO
- install_options
- neo_path > $inst_dir/starte_neo
- echo
- echo -e "Um NEO nun jetzt zu aktivieren geben Sie bitte »${green}. $inst_dir/starte_neo${normal}« (mit Punkt und Leerzeichen!) ein."
- echo -e "Danach oder nach dem nächsten Login kann jederzeit mit ${green}asdf${normal} von QWERTZ zu NEO und mit ${green}uiae${normal} von NEO zu QWERTZ gewechselt werden."
- exit
-fi
-
-
-# configuration file found → delete/deinstall options
-deinstall_options
-exit
-