summaryrefslogtreecommitdiff
path: root/.profile
diff options
context:
space:
mode:
authorMehdi Sadeghi <mehdi@mehdix.org>2023-02-11 11:39:09 +0100
committerMehdi Sadeghi <mehdi@mehdix.org>2023-02-11 11:39:09 +0100
commitd9875a5f7820a4040d7658d348e5e8a4d1b10d31 (patch)
tree5c847b26eac14b176adfac6ac4a4147a832dad16 /.profile
parent0166b86c8cd4827dc68da35d584b4c40041faf54 (diff)
Add profile warning, git autoSetup, GDK & new envs
- Warn on existing .bash_profile (it prevents loading .profile) - Add autoSetupRemote to create git remote branches on push - Add GTK setting to use Wayland - Add volta env vars since I use it alot
Diffstat (limited to '.profile')
-rw-r--r--.profile5
1 files changed, 4 insertions, 1 deletions
diff --git a/.profile b/.profile
index b91f198..51412e0 100644
--- a/.profile
+++ b/.profile
@@ -7,7 +7,7 @@ export LANGUAGE=en
export LC_ALL=en_US.UTF-8
export EDITOR=vim
-#export GDK_BACKEND=wayland
+export GDK_BACKEND=wayland
export MAKEFLAGS=-j`lscpu | grep '^CPU(s):' | awk -F' ' '{ print $2 }'`
export CFLAGS="-O2 -pipe -march=native"
@@ -25,4 +25,7 @@ HOSTNAME=$(cat /proc/sys/kernel/hostname)
&& [ -f ~/.bashrc ] && . ~/.bashrc \
&& echo "$(date): .bashrc loaded from .profile" >> ~/debug_logs
+export VOLTA_HOME="$HOME/.volta"
+export PATH="$VOLTA_HOME/bin:$PATH"
+
echo .profile end