bash: aggiorna `.profile` e `.bash_profile`

In `.bash_profile` e `.profile`, dichiara le variabili XDG_CONFIG_HOME,
XDG_CACHE_HOME e XDG_DATA_HOME.
Inoltre, in `.profile`, aggiungi la cartella `~/AppImage` al PATH.
This commit is contained in:
Luca Pellegrini 2023-03-22 22:35:53 +01:00
parent 2ea150e0e1
commit 86b298de2d
2 changed files with 19 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
# shellcheck shell=sh
# ~/.bash_profile: executed by the command interpreter for login shells.
#
# see /usr/share/doc/bash/examples/startup-files for examples.
@ -26,8 +26,13 @@ if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
# set PATH so it includes '~/AppImage' directory, if it exists
if [ -d "$HOME/AppImage" ] ; then
PATH="$HOME/AppImage:$PATH"
fi
# Environment variables
# XDG Base Directory specification
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_DATA_HOME="$HOME/.local/share"

View File

@ -1,3 +1,4 @@
# shellcheck shell=sh
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
@ -25,3 +26,14 @@ fi
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
# set PATH so it includes '~/AppImage' directory, if it exists
if [ -d "$HOME/AppImage" ] ; then
PATH="$HOME/AppImage:$PATH"
fi
# Environment variables
# XDG Base Directory specification
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_DATA_HOME="$HOME/.local/share"