Add description, fix window size
This commit is contained in:
parent
2f6e69c635
commit
9f60e69139
30
README.md
30
README.md
@ -1,2 +1,30 @@
|
|||||||
# passgener
|
# passgener
|
||||||
Feature rich generator
|
|
||||||
|
## Feature rich generator
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
**Python**
|
||||||
|
```sh
|
||||||
|
pip install tk pyperclip qrcode
|
||||||
|
```
|
||||||
|
|
||||||
|
**On debian**
|
||||||
|
```sh
|
||||||
|
sudo apt install python3-tk python3-pil.imagetk
|
||||||
|
```
|
||||||
|
|
||||||
|
**On fedora**
|
||||||
|
```sh
|
||||||
|
sudo dnf install python3-tkinter python3-pillow-tk
|
||||||
|
```
|
||||||
|
|
||||||
|
<img src="https://i.imgur.com/KUsAunA.png" alt="img" align="right" width="150px">
|
||||||
|
<img src="https://i.imgur.com/LQg6okt.png alt="img" align="right" width="200px">
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- using cusom passassword
|
||||||
|
- copy passwoed to clipboard
|
||||||
|
- share password via QR code
|
||||||
|
|
||||||
|
|||||||
1
front.py
1
front.py
@ -7,6 +7,7 @@ os.chdir(scriptdir.removesuffix('/front.py'))
|
|||||||
|
|
||||||
window = Tk()
|
window = Tk()
|
||||||
window.geometry("350x280")
|
window.geometry("350x280")
|
||||||
|
window.resizable(width=False, height=False)
|
||||||
window.configure(background="#ccc")
|
window.configure(background="#ccc")
|
||||||
ttk.Style().configure("TCheckbutton", padding=6, relief="flat",
|
ttk.Style().configure("TCheckbutton", padding=6, relief="flat",
|
||||||
background="#ccc")
|
background="#ccc")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user