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
|
||||
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
|
||||
|
||||
|
||||
3
front.py
3
front.py
@ -7,6 +7,7 @@ os.chdir(scriptdir.removesuffix('/front.py'))
|
||||
|
||||
window = Tk()
|
||||
window.geometry("350x280")
|
||||
window.resizable(width=False, height=False)
|
||||
window.configure(background="#ccc")
|
||||
ttk.Style().configure("TCheckbutton", padding=6, relief="flat",
|
||||
background="#ccc")
|
||||
@ -98,4 +99,4 @@ plus.place(x=252, y=140)
|
||||
Copy.place(x=12, y=190)
|
||||
genqr.place(x=12, y=230)
|
||||
|
||||
window.mainloop()
|
||||
window.mainloop()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user