diff options
| author | Michal Hanus <mikehanus@protonmail.com> | 2026-01-01 17:25:49 +0100 |
|---|---|---|
| committer | Michal Hanus <mikehanus@protonmail.com> | 2026-01-01 17:25:49 +0100 |
| commit | ea01f1505ed6d22ab730aa8dec6cf6eeac6fb25e (patch) | |
| tree | 339d2f8b508c9e70719cbe472a8d4ee483abd29a /.profile | |
| parent | 69ce5a05e2c85b173f8c4ae8959323be8a582419 (diff) | |
fonts, vscode, profiles
Diffstat (limited to '.profile')
| -rw-r--r-- | .profile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.profile b/.profile new file mode 100644 index 0000000..d89ea5a --- /dev/null +++ b/.profile @@ -0,0 +1,27 @@ +# ~/.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. + +# the default umask is set in /etc/profile; for setting the umask +# for ssh logins, install and configure the libpam-umask package. +#umask 022 + +# 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 |
