blob: bf67a488c0da64a5c48f4df914a6d760b99b0f2f (
plain)
1
2
3
4
5
6
|
#!/bin/sh
# Allow users to get the speed of ethernet interfaces. This is not a security
# issue as i3status only queries the speed, it does not change any
# configuration.
setcap cap_net_admin=ep /usr/bin/i3status || true
|