mass update.
[my-dotfiles.git] / bin / executors / wifi-name
diff --git a/bin/executors/wifi-name b/bin/executors/wifi-name
deleted file mode 100755 (executable)
index 06a45c8..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-# This script displays battery icon according to the charge level and charging state
-
-# Author: Piotr Miller
-# e-mail: nwg.piotr@gmail.com
-# Website: http://nwg.pl
-# Project: https://github.com/nwg-piotr/tint2-executors
-# Icon by @edskeye
-
-# Dependencies: `wireless_tools`
-# Arguments: [-N] ("Wi-Fi: " instead of icon) | [-M'custom name']
-IWGETID="sudo /sbin/iwgetid"
-NAME="none"
-
-wifi=$($IWGETID | awk -F '"' '{ print $2 }')
-if [[ ! -z "$wifi" ]]; then
-    NAME="$wifi"
-fi
-
-if [[ $1 == -N* ]]; then
-    echo "Wi-Fi: $NAME"
-elif [[ $1 == -M* ]]; then
-    echo "$(echo $1 | cut -c3-) $NAME"
-else
-    echo /usr/share/icons/MB-Mango-Suru-GLOW/devices/16/network-wireless.svg
-    echo " ${NAME}"
-fi