android-808

Results 46 comments of android-808

i do remember having siilar issues when i did some work resolving issues before. i think in this scenario the code should be patched to be == instead. is keyword...

sorry to double post but it won't let me edit at the moment on phone. i'll try it with Arch when i get home. I can patch it if it...

I'll add this to the list. We've played with this several times before, with every attempt having some kind of shortfall.

Testing here is a little harder, lm-sensors/coretemp never worked right. For example it has just gone 28 to 6 in a second, but hey at least it's not negative today....

See what I mean, always some small technicality :p

Currently I'm trying out ``` sed 's/.[0-9]//g' ``` This should match any '.' and any following numbers only, leaving the temperature units in place. Please test it as my laptop...

yeah, that'll do. just a simple file with #!/bin/sh followed by conky-colors ... Either that or just output options in to a file so you can run: cat optionsfile |...

The issue is 'which' is testing the users PATH. The command itself is not, as far as I can tell, actually called by that user but by root (via sudo)....

It now runs without requiring to be started as root/ via sudo. Is the last of the checks in the patch meant to be commented? Running "sudo which openvpn" does...

subprocess.check_output(["sudo", "which", "wget"]) subprocess.check_output(["sudo", "which", "unzip"]) # subprocess.check_output(["sudo", "which", "openvpn"]) I know as you said it prompts for installation, but being commented won't the last line pass anyway without openvpn...