From 1b78111d2112a4bf24dae722026cc3023d116761 Mon Sep 17 00:00:00 2001
From: Salt <rehashedsalt@cock.li>
Date: Tue, 21 Aug 2018 19:16:45 -0500
Subject: [PATCH] Polybar: Remove amidown.sh

---
 .config/polybar/amidown.sh | 60 --------------------------------------
 .config/polybar/config     | 10 +------
 2 files changed, 1 insertion(+), 69 deletions(-)
 delete mode 100755 .config/polybar/amidown.sh

diff --git a/.config/polybar/amidown.sh b/.config/polybar/amidown.sh
deleted file mode 100755
index 1ed8fd14..00000000
--- a/.config/polybar/amidown.sh
+++ /dev/null
@@ -1,60 +0,0 @@
-#! /bin/bash
-#
-# netstatus.sh
-# Copyright (C) 2018 rehashedsalt <salt@lap-th-e560-0>
-#
-# Distributed under terms of the MIT license.
-#
-
-# Global vars
-if_default=""
-ipv4_private=""
-
-# Define our tests
-function test-gateway {
-	if ip r | grep default > /dev/null 2>&1; then
-		ipr="$(ip r | grep default)"
-		ipv4_private="$(echo $ipr | awk '{print $3}')"
-		if_default="$(echo $ipr | awk '{print $5}')"
-		unset ipr
-		return 0
-	else
-		return 1
-	fi
-}
-
-function test-internet {
-	if ping -c 1 8.8.8.8 > /dev/null 2>&1; then
-		return 0
-	else
-		return 1
-	fi
-}
-
-function test-dns {
-	if ping -c 1 google.com > /dev/null 2>&1; then
-		return 0
-	else
-		return 1
-	fi
-}
-
-# Actually go through with them
-if ! test-gateway; then
-	printf "NONE"
-	exit 1
-fi
-
-if ! test-internet; then
-	printf "LOCAL"
-	exit 2
-fi
-
-if ! test-dns; then
-	printf "NO DNS"
-	exit 3
-fi
-
-printf "UP"
-exit 0
-
diff --git a/.config/polybar/config b/.config/polybar/config
index df38cd15..8487c67e 100644
--- a/.config/polybar/config
+++ b/.config/polybar/config
@@ -88,7 +88,7 @@ border-top-size = 0
 
 modules-left = ${env:PB_BAR_PRIMARY_MODULES_LEFT:battery cpu memory}
 modules-center = ${env:PB_BAR_PRIMARY_MODULES_CENTER: bspwm}
-modules-right = ${env:PB_BAR_PRIMARY_MODULES_RIGHT:amidown xbacklight volume date}
+modules-right = ${env:PB_BAR_PRIMARY_MODULES_RIGHT:xbacklight volume date}
 
 [bar/primary-2]
 monitor = ${env:PB_MONITOR:eDP-1}
@@ -144,14 +144,6 @@ content = " "
 
 # OTHER
 #====================
-[module/amidown]
-type = custom/script
-format-prefix = "NET: "
-format-prefix-foreground = ${res/colors.alert}
-exec = ~/.config/polybar/amidown.sh
-exec-if = ! ping -c 1 google.com
-interval = 15
-
 [module/battery]
 type = internal/battery
 format-charging = <label-charging>