This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> loadkeys br-abnt2 | |
>>> timedatectl set-timezone America/Sao_Paulo | |
>>> hwclock --systohc | |
>>> cfdisk /dev/sda | |
##### IMPORTANT ##### | |
# Use partition GPT # | |
##################### | |
/boot - EFI System - 500M (sda1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Author: William C. Canin | |
Description: List file from a given directory, print and show the process in a Progressbar. Using Thread. | |
""" | |
from concurrent.futures import ThreadPoolExecutor | |
from tkinter import Tk, Button, W, messagebox | |
from tkinter.ttk import Progressbar | |
from threading import Thread | |
from os import walk |
OlderNewer