Created
October 15, 2024 11:47
-
-
Save radupotop/d77a47767e2e65a7e7d40d1ea83102a1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
WINDOW_SIZE="2560x1440" | |
CWD="$*" | |
Xephyr -br -ac -noreset -screen $WINDOW_SIZE :9 & | |
DISPLAY=:9 xfwm4 & | |
sleep 1 | |
DISPLAY=:9 lxpanel & | |
DISPLAY=:9 pcmanfm --desktop & | |
sleep 1 | |
DISPLAY=:9 pcmanfm --new-win "$HOME" & | |
DISPLAY=:9 chromium & | |
DISPLAY=:9 evince & | |
DISPLAY=:9 xfce4-terminal --working-directory "$CWD" & | |
DISPLAY=:9 code -n "$CWD" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment