diff options
author | johannst <stoelp@eit.uni-kl.de> | 2018-02-14 22:38:18 +0100 |
---|---|---|
committer | johannst <stoelp@eit.uni-kl.de> | 2018-02-14 22:38:18 +0100 |
commit | e3a60ffe1b1ba1a4d16152cd106203ddf0138260 (patch) | |
tree | b06fb67b3c9ce8ed97cbfe7c752b5fb0ebafe33b /install | |
parent | 267cc95265c7a49084a24147e968c7dc18834992 (diff) | |
download | dotfiles-e3a60ffe1b1ba1a4d16152cd106203ddf0138260.tar.gz dotfiles-e3a60ffe1b1ba1a4d16152cd106203ddf0138260.zip |
installation of i3status.conf not tries to guess network interface names based on a simple heuristic
Diffstat (limited to 'install')
-rwxr-xr-x | install | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -153,6 +153,29 @@ function i3statusConfigInstaller() { return 1 fi cp i3status.conf $i3_status_conf + + local nif=$(ip link show | grep ^[1-9] | grep -v LOOPBACK | sed 's/ //g' | cut -d ':' -f 2) + + local num_wlanif=$(echo -e $nif | tr ' ' '\n' | grep wl | wc -l) + local wlanif=$(echo -e $nif | tr ' ' '\n' | grep wl) + if [[ $num_wlanif != 1 || -z $wlanif ]]; then + echo "[Warning]: i3statusConfigInstaller couldn't find name of WIFI IF!" + sed -i '/__DEF__WIFI_START__/,/__DEF__WIFI_END__/d' $i3_status_conf + else + sed -i "s/__NIF_WIFI__/$wlanif/g" $i3_status_conf + fi + + local num_ethif=$(echo -e $nif | tr ' ' '\n' | grep en | wc -l) + local ethif=$(echo -e $nif | tr ' ' '\n' | grep en) + if [[ $num_ethif != 1 || -z $ethif ]]; then + echo "[Warning]: i3statusConfigInstaller couldn't find name of ETH IF!" + sed -i '/__DEF__ETH_START__/,/__DEF__ETH_END__/d' $i3_status_conf + else + sed -i "s/__NIF_ETH__/$ethif/g" $i3_status_conf + fi + + sed -i '/__DEF__.*__/d' $i3_status_conf + return 0 } |