Line | |
---|
1 | export PATH=$PATH:$HOME/.bin:~/.local/bin:/bin:$HOME/.nix-profile/bin
|
---|
2 | #:$HOME/.nix-profile/bin
|
---|
3 |
|
---|
4 | export CC=gcc
|
---|
5 | export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/.guix-profile/lib/
|
---|
6 |
|
---|
7 | export XENVIRONMENT=$HOME/.Xresources
|
---|
8 |
|
---|
9 | export MOZ_X11_EGL=1
|
---|
10 |
|
---|
11 | export python=/usr/bin/python3
|
---|
12 |
|
---|
13 | alias firefox='x11docker -c -I --share $HOME/Downloads -- --tmpfs /dev/shm -- jess/firefox'
|
---|
14 |
|
---|
15 | export LIBVA_DRIVER_NAME=i965
|
---|
16 | export MOZ_X11_EGL=1
|
---|
17 |
|
---|
18 | export GUIX_PACKAGE_PATH=$HOME/.guix-packages
|
---|
19 | GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles
|
---|
20 |
|
---|
21 | for i in $GUIX_EXTRA_PROFILES/*; do
|
---|
22 | profile=$i/$(basename "$i")
|
---|
23 | if [ -f "$profile"/etc/profile ]; then
|
---|
24 | GUIX_PROFILE="$profile"
|
---|
25 | . "$GUIX_PROFILE"/etc/profile
|
---|
26 | fi
|
---|
27 | unset profile
|
---|
28 | done
|
---|
29 |
|
---|
30 | export PHPENV_ROOT="/home/w96k/.phpenv"
|
---|
31 | if [ -d "${PHPENV_ROOT}" ]; then
|
---|
32 | export PATH="${PHPENV_ROOT}/bin:${PATH}"
|
---|
33 | eval "$(phpenv init -)"
|
---|
34 | fi
|
---|
35 |
|
---|
36 | # Honor per-interactive-shell startup file
|
---|
37 | # if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
|
---|
38 |
|
---|
39 | if [ -f ~/.Xresources ]; then xrdb ~/.Xresources; fi
|
---|
Note:
See
TracBrowser
for help on using the repository browser.