Szymon Wygnański

Results 42 comments of Szymon Wygnański

I'm sorry for writing so late, but I was on vacation. I've tested the solution, and it works great. Thanks a lot! Since when I write JS I always use...

This is my workaround: ```bash #!/bin/bash FILE=$1 if [[ "$FILE" != /* ]]; then FILE=$PWD/$1 fi echo "Opening $FILE" i3 exec "terminator -e \"nvim $FILE\"" ``` basically it opens a...