mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 11:13:04 +03:00
34 lines
982 B
Bash
34 lines
982 B
Bash
# [[file:Console.org::*Environment][Environment:1]]
|
|
# export EDITOR=/usr/bin/vim
|
|
# export BROWSER=/usr/bin/firefox
|
|
export QT_QPA_PLATFORMTHEME="qt5ct"
|
|
export QT_AUTO_SCREEN_SCALE_FACTOR=0
|
|
# export GTK2_RC_FILES="$HOME/.gtkrc-2.0"
|
|
# Environment:1 ends here
|
|
|
|
# [[file:Console.org::*My paths][My paths:1]]
|
|
if [ -d "$HOME/bin" ] ; then
|
|
export PATH="$HOME/bin:$PATH"
|
|
export PATH="$HOME/bin/scripts:$PATH"
|
|
fi
|
|
# My paths:1 ends here
|
|
|
|
# [[file:Console.org::*Guix settings][Guix settings:1]]
|
|
GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles
|
|
for i in $GUIX_EXTRA_PROFILES/*; do
|
|
profile=$i/$(basename "$i")
|
|
if [ -f "$profile"/etc/profile ]; then
|
|
GUIX_PROFILE="$profile"
|
|
. "$GUIX_PROFILE"/etc/profile
|
|
fi
|
|
unset profile
|
|
done
|
|
# Guix settings:1 ends here
|
|
|
|
# [[file:Console.org::*Guix settings][Guix settings:2]]
|
|
export GUIX_PACKAGE_PATH=~/guix-packages
|
|
# Guix settings:2 ends here
|
|
|
|
# [[file:Console.org::*XResources][XResources:1]]
|
|
xrdb ~/.Xresources
|
|
# XResources:1 ends here
|