diff options
author | Marc Coquand <marc@mccd.space> | 2024-05-06 17:07:49 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-05-06 17:07:49 -0500 |
commit | 80b95fcaab9149466e656430eb4c0041e28ee455 (patch) | |
tree | c9161d0815b3f81cea9f522891ee148bb5f427af /bash_profile | |
download | rcm-80b95fcaab9149466e656430eb4c0041e28ee455.tar.gz rcm-80b95fcaab9149466e656430eb4c0041e28ee455.tar.bz2 rcm-80b95fcaab9149466e656430eb4c0041e28ee455.zip |
Initial commit
Diffstat (limited to '')
-rw-r--r-- | bash_profile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/bash_profile b/bash_profile new file mode 100644 index 0000000..bdf10fc --- /dev/null +++ b/bash_profile @@ -0,0 +1,22 @@ +# Set up the system, user profile, and related variables. +# /etc/profile will be sourced by bash automatically +# Set up the home environment profile. +if [ -f ~/.profile ]; then source ~/.profile; fi + +# Honor per-interactive-shell startup file +if [ -f ~/.bashrc ]; then source ~/.bashrc; fi +source /run/current-system/profile/etc/profile.d/nix.sh +export PS1="\\A \\e[1m \\W ${GUIX_ENVIRONMENT:+ (+)} \\e(B\\e[m" +export EDITOR="emacsclient -nw" +export TERM="linux" +export TERMINAL="foot" +export GDK_DPI_SCALE="1.5" +export GDK_SCALE="1.5" +export MOZ_ENABLE_WAYLAND="1" +export XCURSOR_THEME="Adwaita" +export XCURSOR_SIZE="32" +export XDG_CURRENT_DESKTOP="wlroots" +export XDG_SESSION_TYPE="hikari" +export PF_INFO="ascii title os host pkgs shell" +export PF_ALIGN="7" +export PF_COLOR="0" |