diff --git a/graphs/OPSEC.drawio b/graphs/OPSEC.drawio
new file mode 100644
index 0000000..e57f6ea
--- /dev/null
+++ b/graphs/OPSEC.drawio
@@ -0,0 +1,724 @@
+
And that's it! Now stop going around in circles, and get back to doing what truly matters to you!
+ + + + + +Tying back to the workspace management, you can have a tiling window manager where you can manage the applications you open and move around on your desktop using only the keyboard.
+To achieve this i recommend using the i3 window manager like so:
+
+nothing@debian:~$ su -
+Password:
+root@debian:~# apt install i3 -y
+
+
+once installed, (since you are probably not already in i3, but rather in an other window manager like cinnamon) you can simply go back to the login screen by logging out or by running this command:
+
+root@debian:~# systemctl restart lightdm
+
+
+From there you can start to edit the i3 config from a terminal (that you open with the shortcut Win+ENTER):
+
+nothing@debian:~$ vim ~/.config/i3/config
+
+
+From here you can customize just about anything you want, from the shortcuts, to the colors used and the apps that are launched upon startup. Here are the main shortcuts that you need to remember:
+
+#my Modkey is the windows key (Mod4), it's at the very top of my i3config file.
+
+#Change workspaces :
+-Mod+1234567890
+
+#Change focus to next window :
+-Mod+Arrow
+
+#KILL the window:
+-Mod+Shift+Q
+
+#Toggle Vertical/Horizontal layout :
+-Mod+V or H (and then move/create a window where you put the V/H mode)
+
+#Move window in the workspace :
+-Mod+Shift+Arrow
+
+#Move window to workspace:
+-Mod+Shift+12345647890
+
+#Create Terminal window:
+-Mod+Enter
+
+#open any application:
+-Mod+d
+(type application name)
+ENTER
+
+#Toggle floating mode on a window:
+-Mod+Space
+
+#Enter resize mode:
+-Mod+R
+-then Arrows to resize
+-then ESC to exit resize mode
+
+
+I customized this quite a bit myself, while still trying to remain minimalistic about it, you can find my dotfiles about it here. In order to get my customized setup quickly i have made those 2 scripts:
+ +First script to setup i3 and the GUI apps i want (drawio, torbrowser, mullvad-browser, simplex chat, keepassxc):
+
+nothing@debian:~$ su -
+root@debian:~# usermod -aG sudo nothing
+root@debian:~# reboot now
+
+nothing@debian:~$ sudo apt install git tor torsocks -y
+nothing@debian:~$ torsocks git clone http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/dotfiles
+nothing@debian:~$ cd dotfiles
+nothing@debian:~$ chmod +x ./debiansetup.sh
+nothing@debian:~$ ./debiansetup.sh
+
+
+
+
+
+
+
+
+