I dont like how the nemo the defualt file browser handles zip files. Just open the damn files lol. put this: ``` #!/bin/bash # Extract the zip file into a folder with the same name unzip "$1" -d "${1%.zip}" # Open the newly created folder in Nemo (same window new tab) nemo --existing-window "${1%.zip}" ``` in ```/home/user/.local/bin/extract_and_open.sh``` Then just add ```/home/user/.local/bin/extract_and_open.sh``` as your defualt command for opening zips.