about summary refs log tree commit diff stats
path: root/bash/bash_profile
diff options
context:
space:
mode:
authorCase Duckworth2023-05-13 23:50:35 -0500
committerCase Duckworth2023-05-13 23:50:35 -0500
commit832af38380ba5b6a020b034059b4bc5ff7443ded (patch)
treefce4708280ff964d80a9808ed6826a1f3799e804 /bash/bash_profile
parentuhhhh (diff)
downloadetc-832af38380ba5b6a020b034059b4bc5ff7443ded.tar.gz
etc-832af38380ba5b6a020b034059b4bc5ff7443ded.zip
uhhh
Diffstat (limited to 'bash/bash_profile')
-rw-r--r--bash/bash_profile7
1 files changed, 7 insertions, 0 deletions
diff --git a/bash/bash_profile b/bash/bash_profile index 4439ca7..92ce061 100644 --- a/bash/bash_profile +++ b/bash/bash_profile
@@ -2,3 +2,10 @@
2 2
3[[ -f ~/.profile ]] && source ~/.profile 3[[ -f ~/.profile ]] && source ~/.profile
4[[ -f ~/.bashrc ]] && source ~/.bashrc 4[[ -f ~/.bashrc ]] && source ~/.bashrc
5
6# start sway on tty 1
7
8if test -z "$DISPLAY" && test /dev/tty1 = "$(tty)"
9then
10 swayrun
11fi