Environment variables: Difference between revisions

imported>SuperSamus
`\${HOME}` has some issues that `$HOME` doesn't have (e.g. logging in a Fish shell via TTY)
imported>SuperSamus
No edit summary
Line 10: Line 10:
     XDG_CACHE_HOME  = "$HOME/.cache";
     XDG_CACHE_HOME  = "$HOME/.cache";
     XDG_CONFIG_HOME = "$HOME/.config";
     XDG_CONFIG_HOME = "$HOME/.config";
    XDG_BIN_HOME    = "$HOME/.local/bin";
     XDG_DATA_HOME  = "$HOME/.local/share";
     XDG_DATA_HOME  = "$HOME.local/share";
     XDG_STATE_HOME  = "$HOME/.local/state";
     XDG_STATE_HOME  = "$HOME/.local/state";


    # Not officially in the specification
    XDG_BIN_HOME    = "$HOME/.local/bin";
     PATH = [  
     PATH = [  
       "${XDG_BIN_HOME}"
       "${XDG_BIN_HOME}"