]> git.rmz.io Git - dotfiles.git/blobdiff - awesome/widgets/network_widget.lua
awesome: cleanup network_widget
[dotfiles.git] / awesome / widgets / network_widget.lua
index 15f19f78b6c90fe7a78e209eb5af606b58bbc3cd..9b9b974119da1ca8309a69d2536b1554fadc1c96 100644 (file)
@@ -2,11 +2,14 @@ local utils = require("utils")
 local net_widget = require("widgets/net_widgets")
 
 local widget
-if utils.host == "smartlab-imac2" then
+if utils.host == "chronos" then
     widget = net_widget.wireless({interface="wlp3s0", command_mode="newer", font='monospace'})
 end
-if utils.host == "shada" then
+if utils.host == "hactar" then
     widget = net_widget.indicator({interfaces={"enp3s0"}, command_mode="newer", font='monospace'})
 end
+if utils.host == "uh-nuc001" then
+    widget = net_widget.indicator({interfaces={"eno1"}, command_mode="newer", font='monospace'})
+end
 
 return widget