willbelr
willbelr
I have a similar problem on RPI 3B, using "create_ap wlan0 tun0 ssid passwd" route traffic directly trough eth0 instead of tun0.
This is easily solved with ufw: ``` ufw default deny incoming ufw default deny outgoing ufw allow SSH ufw allow from 192.168.0.0/24 ufw allow in on tun0 ufw allow out...
A little out topic, but as I could not find a satisfying solution, I went for this alternative https://addons.mozilla.org/en-CA/firefox/addon/bookmark-toolbar-menu-button/. Hope this helps
Would offer 20$ for someone to fix this
Adding to this idea, instead of displaying a preview, the game or app should be launched directly when clicked in the Widget tab.
It could be a hardware issue, because it worked on another machine. I solved the problem by using /dev/input/event* instead of /dev/input/js*
Also related to #364
Try launching the script from a desktop file. On my system, I can toggle the bug by setting terminal=true (good) or false (bad). ``` [Desktop Entry] Exec=python /home/user/.local/share/scripts/primenote/primenote/__init__.py Terminal=false ```...
I found the bug is caused by the `LINES` and `COLUMNS` environment variables, which are set by xterm (bad) but not rxvt (good). I use xterm to launch my scripts,...
Instead of reinventing the wheel, perhaps we could use Django regex? ``` # This URL validator regular expression belongs to Django Software # Copyright (c) Django Software Foundation and individual...