pi-dev500

Results 13 comments of pi-dev500

Remove just 'tk.' at the begin of yours function and add at begin of script ``` from Tkinter import Entry ``` @mano1979

So here ``` tk.Tk() ``` = ``` Tk() ```

Wouldn't you prefer to trick the .bashrc to allow compatibility to all terminals ?

You could back up the .bashrc, then add add some lines at it's end with something that put back in place the original bashrc before executing the command, and, at...

As .bashrc is executed on startup of shell, we should just have to add the 3 lines of code at end of .bashrc, then start the terminal that will revert...

I personally use a Raspberry Pi 4 and the app can take up to 10 seconds to start. I was thinking of doing a background preload with Python before seeing...

My python script(only 1 sec to run it): ``` #!/usr/bin/pypy import subprocess import os import sys import json def parse_desktop_file(desktop_file_path,xdg): with open(desktop_file_path, "r") as f: desktop_file = f.read() name =...

You don't need wget.detect_filename because wget.download return the filename of the download. This can be a solution for the problem if wget.download does not follow wget.detect_filename answer. exemple: >filename=wget.download('https://piston-data.mojang.com/v1/objects/0c3ec587af28e5a785c0b4a7b8a30f9a8f78f838/client.jar') >100%...

My script for getting optifine-compatible Minecraft versions and installing them. I didn't created yet the optifine rename function which will move optifine to a much more human readable name ex:...

Yes, you can, @v-pun215 👍