aboutsummaryrefslogtreecommitdiff
path: root/modules/internet
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-10-21 20:19:13 +0100
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-10-21 20:19:13 +0100
commit381ed70027c2a64b239997b4363cc316d56de23a (patch)
tree12b73aa0892156dbf145b718e6b16ce832c6ec3f /modules/internet
parentbb788dddf67c67d8ccd8f365187fea4d470a5d11 (diff)
Added internet and network modules
Diffstat (limited to 'modules/internet')
-rwxr-xr-xmodules/internet13
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/internet b/modules/internet
new file mode 100755
index 0000000..136005a
--- /dev/null
+++ b/modules/internet
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+# Prints out if there is an internet connection
+
+INTERNET_ICON=''
+
+get_internet()
+{
+ echo "$INTERNET_ICON"
+}
+
+get_internet
+