diff options
author | Karel Kočí <cynerd@email.cz> | 2017-08-02 20:30:18 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-08-02 20:30:18 +0200 |
commit | 0439d2707714e1b6879818dc76e15256617a335d (patch) | |
tree | 38427389b14cb93aa52089ce55088b5d30ebdc90 | |
parent | cf52d4ecaef0ea3b7283bf2f38d19422cb84e917 (diff) | |
download | myconfigs-0439d2707714e1b6879818dc76e15256617a335d.tar.gz myconfigs-0439d2707714e1b6879818dc76e15256617a335d.tar.bz2 myconfigs-0439d2707714e1b6879818dc76e15256617a335d.zip |
Update system install script
-rwxr-xr-x | system/etc/init.d/killi3 | 13 | ||||
-rwxr-xr-x | system_install | 19 |
2 files changed, 15 insertions, 17 deletions
diff --git a/system/etc/init.d/killi3 b/system/etc/init.d/killi3 deleted file mode 100755 index 1fa83aa..0000000 --- a/system/etc/init.d/killi3 +++ /dev/null @@ -1,13 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - before killprocs -} - -start() { - for socket in `find /run/user/*/i3 -name ipc-socket*`; do - i3-msg -s $socket exit - done -} diff --git a/system_install b/system_install index 1caf757..bf93b15 100755 --- a/system_install +++ b/system_install @@ -22,15 +22,26 @@ if [ -e /etc/arch-release ]; then fi fi -read -p "Laptop ACPI and pm? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "Laptop ACPI and pm"; then inst system/etc/acpi/handler.sh /etc/acpi/handler.sh inst system/etc/pm/sleep.d/10lock /etc/pm/sleep.d/10lock fi -read -p "Wpa supplicant? (Y/n) " -if [[ $REPLY =~ ^[Yy]?$ ]]; then +if ask "System PATH profile"; then + inst system/etc/profile.d/path.sh /etc/profile.d/path.sh +fi + +if ask "X11 configuration"; then + inst system/etc/X11/ /etc/X11/ +fi + +if ask "System-wide PulseAudio configuration"; then + inst system/etc/pulse/ /etc/pulse/ +fi + +if ask "Wpa supplicant"; then # TODO + true fi # As final step just ensure that correct user is owning system files |