Actions
Bug #313
closedAdd current IP address to status bar
Start date:
12 Apr 2014
Due date:
% Done:
100%
Estimated time:
Severity:
02 - High
Description
It would be helpful to have the current IP address displayed in the status bar.
Updated by Hammel over 10 years ago
- Status changed from New to In Progress
- % Done changed from 0 to 50
Added code to place current interface's IP addr in status bar, but this needs to be based on actual configuration and not what's in /etc/network/interfaces. So it needs to change to something like:
FILE* file = popen("/sbin/ifconfig wlan0 | grep 'inet addr:' | cut -d: -f2", "r");
fgets(buffer, 100, file);
Updated by Hammel over 10 years ago
- Status changed from In Progress to Closed
- % Done changed from 50 to 100
Verified updates - IP address is correctly displayed in the status bar.
Closing issue.
Actions