initial commit
This commit is contained in:
19
bash/.bash_profile
Normal file
19
bash/.bash_profile
Normal file
@@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
export WLR_NO_HARDWARE_CURSORS=1
|
||||
export MOZ_ENABLE_WAYLAND=1
|
||||
|
||||
if test -z "${XDG_RUNTIME_DIR}"; then
|
||||
export XDG_RUNTIME_DIR=/tmp/${UID}-runtime-dir
|
||||
if ! test -d "${XDG_RUNTIME_DIR}"; then
|
||||
mkdir "$XDG_RUNTIME_DIR"
|
||||
chmod 0700 "$XDG_RUNTIME_DIR"
|
||||
fi
|
||||
fi
|
||||
|
||||
# This file is sourced by bash for login shells. The following line
|
||||
# runs your .bashrc and is recommended by the bash info pages.
|
||||
|
||||
if [[ -f ~/.bashrc ]] ; then
|
||||
. ~/.bashrc
|
||||
fi
|
||||
source "$HOME/.cargo/env"
|
Reference in New Issue
Block a user