Skip to content

Latest commit

 

History

History
60 lines (41 loc) · 2.21 KB

README.md

File metadata and controls

60 lines (41 loc) · 2.21 KB

ip widget

A simple widget to show the IP of an interface in the awesomewm window manager wibar.

GitHub repo file count GitHub code size in bytes GitHub repo size

GitHub issues GitHub closed issues GitHub pull requests GitHub closed pull requests

GitHub

Screenshots

Screenshot

Installation and configuration

Clone the repo under your widgets folder:

  • If you are using a custom theme: ~/.config/awesome/widgets/
  • If you are using a default theme: /usr/share/awesome/lib/ (requires root privileges)

Edit awesome-ip-widget/ip.lua and set your interface name

local interface = "enp0s3" --Change enp0s3 for your interface name

Edit your rc.lua file and add the following

  • If you are using a custom theme: ~/.config/awesome/rc.lua
  • If you are using a default theme: /etc/xdg/awesome/rc.lua (requires root privileges)
local ip_widget = require("widgets.awesome-ip-widget.ip")

...
s.mytasklist, -- Middle widget
{ -- Right widgets
  layout = wibox.layout.fixed.horizontal,
	...
	ip_widget,
	...
},

Restart awesome ;)

Troubleshooting

In case of any problem create an issue

Discussions

If you want ask (or answer) a question, leave an opinion or have a open-ended conversation you can create (or join) a discussion

Support

If you find this widget useful you can star this repo.