5 lines
124 B
Bash
Executable file
5 lines
124 B
Bash
Executable file
#!/bin/bash
|
|
|
|
[ -f ~/.bashrc ] && source "$HOME/.bashrc"
|
|
|
|
[ "$(tty)" = "/dev/tty1" ] && ! pgrep -x i3 > /dev/null && exec i3
|