dotfiles/profile
Daniel Borchmann b5dece2d49
Make sure environment variables are correctly set in X session
Definitions should appear in .xsessionrc, as per Xsession(5).  This is a Bourne
shell script, thus bashisms are not allowed here, narf.  So we move our common
variable definitions out into ~/.profile and source that from .xsessionrc and
.bashrc.  Another layer of complexity added, dumb.
2021-02-20 10:09:44 +01:00

6 lines
217 B
Bash

#!/bin/sh
export LANG=en_US.UTF-8
export PATH=${HOME}/.local/share/perl5/bin:${HOME}/.local/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/usr/local/bin:/usr/sbin:/sbin:/usr/local/sbin
export PS1="$ "