51 lines
1.2 KiB
Bash
51 lines
1.2 KiB
Bash
# ~/.profile: executed by the command interpreter for login shells.
|
|
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login exists.
|
|
# see /usr/share/doc/bash/examples/startup-files for examples.
|
|
# the files are located in the bash-doc package.
|
|
|
|
# if running bash
|
|
if [ -n "$BASH_VERSION" ]; then
|
|
# include .bashrc if it exists
|
|
if [ -f "$HOME/.bashrc" ]; then
|
|
. "$HOME/.bashrc"
|
|
fi
|
|
fi
|
|
|
|
# set PATH so it includes user's private bin if it exists
|
|
if [ -d "$HOME/bin" ] ; then
|
|
PATH="$HOME/bin:$PATH"
|
|
fi
|
|
|
|
# set PATH so it includes user's private bin if it exists
|
|
if [ -d "$HOME/.local/bin" ] ; then
|
|
PATH="$HOME/.local/bin:$PATH"
|
|
fi
|
|
|
|
export GPG_TTY=$(tty)
|
|
export QT_QPA_PLATFORMTHEME="qt5ct"
|
|
|
|
# Flutter
|
|
export CHROME_EXECUTABLE="/usr/bin/chromium"
|
|
export FLUTTER_ROOT="$HOME/flutter/flutter"
|
|
if [ -d "$FLUTTER_ROOT/bin" ] ; then
|
|
PATH="$FLUTTER_ROOT/bin:$PATH"
|
|
fi
|
|
|
|
export EDITOR="nvim"
|
|
|
|
# Go
|
|
export GOPATH="$HOME/go"
|
|
if [ -d "$GOPATH/bin" ] ; then
|
|
PATH="$GOPATH/bin:$PATH"
|
|
fi
|
|
if [ -d "/usr/lib/go-1.22/bin" ] ; then
|
|
PATH="/usr/lib/go-1.22/bin:$PATH"
|
|
fi
|
|
|
|
# Rustup
|
|
if [ -d "$HOME/.cargo" ] ; then
|
|
. "$HOME/.cargo/env"
|
|
fi
|
|
|
|
# Firefox
|
|
export MOZ_ENABLE_WAYLAND=1
|