aboutsummaryrefslogtreecommitdiffstats
path: root/.config/conky/blckbx-network.conf
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2017-12-20 22:49:16 +0100
committerDavid Runge <dave@sleepmap.de>2017-12-20 22:49:16 +0100
commitfb62e74e683b98b307815a931a959cbb3991fcd8 (patch)
treedda4bb6531a2b1a312785879d71826ca20c33bbe /.config/conky/blckbx-network.conf
parent0105563a402e3fc057f58cb8861fd79391a7d95f (diff)
parent9f64bd96586f944a1a95404adcbc5a172482f0a4 (diff)
downloaddotfiles-fb62e74e683b98b307815a931a959cbb3991fcd8.tar.gz
dotfiles-fb62e74e683b98b307815a931a959cbb3991fcd8.tar.bz2
dotfiles-fb62e74e683b98b307815a931a959cbb3991fcd8.tar.xz
dotfiles-fb62e74e683b98b307815a931a959cbb3991fcd8.zip
Merge branch 'master' of sleepmap.de:config/dotfiles
* 'master' of sleepmap.de:config/dotfiles: .gitignore: Adding packages/ folder to ignore. Removing unused folders from ignore list. .config/conky/blckbx-*: Adding conky configurations for blckbx. .gnupg/dirmngr_ldapservers.conf: Adding empty configuration, so that dirmngr won't complain. .makepkg.conf: Adding default BUILDDIR /tmp/makepkg. .config/SuperCollider/startup.scd: Automatically initializing and connecting MIDI devices. .ssh/config: Adding global trvlr ssh config.
Diffstat (limited to '.config/conky/blckbx-network.conf')
-rw-r--r--.config/conky/blckbx-network.conf73
1 files changed, 73 insertions, 0 deletions
diff --git a/.config/conky/blckbx-network.conf b/.config/conky/blckbx-network.conf
new file mode 100644
index 0000000..dcf2ccc
--- /dev/null
+++ b/.config/conky/blckbx-network.conf
@@ -0,0 +1,73 @@
+conky.config = {
+background = true,
+total_run_times = 0,
+update_interval = 1,
+own_window = true ,
+own_window_type = 'override',
+own_window_argb_visual = true,
+own_window_argb_value = 0,
+own_window_hints = 'undecorated,sticky,below,skip_taskbar,skip_pager',
+double_buffer = true,
+draw_shades = true,
+draw_outline = false,
+draw_borders = false,
+draw_graph_borders = false,
+alignment = 'top_right',
+minimum_width = 260,
+gap_x = 330,
+gap_y = 40,
+no_buffers = true,
+uppercase = false,
+cpu_avg_samples = 1,
+net_avg_samples = 1,
+override_utf8_locale = true,
+color1 = 'EAEAEA',
+color2 = '00FF66',
+color3 = '11EAEA',
+color4 = 'EAEAEA',
+color5 = 'FF3F3F',
+color6 = '22FFFF',
+color7 = 'FF8888',
+text_buffer_size = 512,
+pad_percents = 0,
+short_units = true,
+format_human_readable = true,
+default_bar_height = 5,
+default_bar_width = 200,
+if_up_strictness = 'link',
+font = 'Inconsolata:size=9',
+use_xft = true,
+}
+
+conky.text = [[
+${color5}Network:\
+${if_up wlp3s0}
+${color3}wlp3s0: ${color1}${addr wlp3s0}
+${color3}essid: ${color1}${wireless_essid wlp3s0}
+${color3}ext: ${color1}${execpi 360 ~/bin/checkip}
+${color3}gway: ${color1}${exec route -n | grep wlp3s0 | grep UG | awk '{print $2}'}
+${color3}dns: ${color1}${nameserver 0}
+${color3}speed: ${color1}${exec iwconfig wlp3s0 | grep "Bit Rate" | cut -d"=" -f2 | cut -d" " -f1} Mb/s
+${color3}frq: ${color1}${wireless_freq wlp3s0}
+${color3}channel: ${color1}${wireless_channel wlp3s0}
+${color3}quality: ${color1}${wireless_link_qual wlp3s0}
+${color3}level: ${color1}${exec iwconfig wlp3s0 | grep "Signal" | cut -d"=" -f3 }
+${color3}rate: ${color1}${downspeed wlp3s0} / ${upspeed wlp3s0}\
+
+${endif}\
+${if_up enp0s25}
+${color3}enp0s25: ${color1}${addr enp0s25}
+${color3}external: ${color1}${execpi 360 ~/bin/checkip}
+${color3}gateway: ${color1}${exec route -n | grep enp0s25 | grep UG |awk '{print $2}'}
+${color3}dns: ${color1}${nameserver 0}
+${color3}rate: ${color1}${downspeed enp0s25} / ${upspeed enp0s25}\
+
+${endif}\
+
+${color5}OpenVPN:
+${color3}sleepmap: ${color1}${execpi 30 systemctl is-active openvpn-client@sleepmap}
+${color3}secure: ${color1}${execpi 30 systemctl is-active openvpn-client@secure}
+
+${color5}Connections:
+${execpi 5 lsof -ni| grep ESTABLISHED| grep -v 127.0.0.1| awk '{print "${color3}"$1,"${color1}"$9;}' }
+]]