bash: Added bash_profile conf file

This commit is contained in:
GaspardCulis 2023-12-12 09:51:42 +01:00
parent c55463e561
commit 3ed8018fdb
2 changed files with 11 additions and 0 deletions

10
shell/bash/.bash_profile Normal file
View file

@ -0,0 +1,10 @@
#
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc
# Start DE if on tty1
if [ "$(tty)" = /dev/tty1 ]; then
exec Hyprland
fi

1
sync
View file

@ -14,6 +14,7 @@ synced_files = [
("editor/helix/", "~/.config/helix/"),
("de/i3/", "~/.config/i3/"),
("de/hypr/", "~/.config/hypr/"),
("shell/bash/.bash_profile", "~/.bash_profile"),
("shell/bash/.bashrc", "~/.bashrc"),
("shell/bash/.bash_aliases", "~/.bash_aliases"),
("shell/bash/.bash_env", "~/.bash_env"),