diff --git a/README.md b/README.md
index 855c3a7..285643d 100644
--- a/README.md
+++ b/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
+```
+
+
+
+
+
+### Features
+
+- using cusom passassword
+- copy passwoed to clipboard
+- share password via QR code
+
diff --git a/front.py b/front.py
index 5f36794..dcb84b3 100644
--- a/front.py
+++ b/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()
\ No newline at end of file
+window.mainloop()
diff --git a/qrview.py b/qrview.py
index 7570072..2b93c3d 100644
--- a/qrview.py
+++ b/qrview.py
@@ -3,6 +3,7 @@ from PIL import ImageTk, Image
import os
window = Tk()
+window.resizable(width=False, height=False)
window.title("qr view")
scriptdir=os.path.abspath(__file__)