https://bbs.archlinux.org/viewtopic.php?pid=1482240#p1482240
sudo patch /usr/share/wicd/curses/wicd-curses.py < /tmp/wicd.py
https://bbs.archlinux.org/viewtopic.php?pid=1482240#p1482240
sudo patch /usr/share/wicd/curses/wicd-curses.py < /tmp/wicd.py
--- /usr/share/wicd/curses/wicd-curses.py 2013-08-20 15:09:54.000000000 -0400 | |
+++ /tmp/wicd.py 2014-12-05 23:32:05.303349880 -0500 | |
@@ -927,9 +927,11 @@ | |
if not ui._started: | |
return False | |
- input_data = ui.get_input_nonblocking() | |
+ # input_data = ui.get_input_nonblocking() | |
+ ui.set_input_timeouts(max_wait=0) | |
+ input_data = ui.get_input() | |
# Resolve any "alarms" in the waiting | |
- self.handle_keys(input_data[1]) | |
+ self.handle_keys(input_data) # [1] | |
# Update the screen | |
canvas = self.frame.render( (self.size),True ) |