aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.profile
diff options
context:
space:
mode:
authorYaroslav <contact@yaroslavps.com>2020-04-02 14:22:19 +0300
committerYaroslav <contact@yaroslavps.com>2020-04-02 14:22:19 +0300
commit06ebba4c53dc2751a2aad1cbccb870bb7db6dc07 (patch)
tree3ed4a5006d7f66b54bcf7e32df2add4bcf9a5911 /dotfiles/.profile
parent348fd5f7ffd4586b8599615dd453dcc61af3ace7 (diff)
downloadswayrice-06ebba4c53dc2751a2aad1cbccb870bb7db6dc07.tar.gz
swayrice-06ebba4c53dc2751a2aad1cbccb870bb7db6dc07.zip
HUGE home cleanup
Diffstat (limited to 'dotfiles/.profile')
-rw-r--r--dotfiles/.profile19
1 files changed, 15 insertions, 4 deletions
diff --git a/dotfiles/.profile b/dotfiles/.profile
index 9424cfc..e683745 100644
--- a/dotfiles/.profile
+++ b/dotfiles/.profile
@@ -1,7 +1,7 @@
export PATH=$PATH:$HOME/.local/bin
-export SCROT_DIR=$HOME/Pictures/screenshots/
-export VREC_DIR=$HOME/Videos/recordings/
-export AREC_DIR=$HOME/Documents/audio/recordings/
+export SCROT_DIR=$HOME/pics/screenshots/
+export VREC_DIR=$HOME/vids/recordings/
+export AREC_DIR=$HOME/docs/audio/recordings/
#export GDK_BACKEND=wayland
export EGL_PLATFORM=wayland
export CLUTTER_PLATFORM=wayland
@@ -17,10 +17,21 @@ export TERM=xterm-256color
export TERMINAL=termite
export EDITOR="nvim"
export BROWSER=qutebrowser
+
+# Le cleaner home
+export XDG_CONFIG_HOME="$HOME/.config"
+export XDG_CACHE_HOME="$HOME/.cache"
+export XDG_DATA_HOME="$HOME/.local/share"
export ZDOTDIR="$HOME/.config/zsh"
export INPUTRC="$HOME/.config/zsh/inputrc"
+export LESSHISTFILE="-"
+export GTK2_RC_FILES="$HOME/.config/gtk-2.0/gtkrc-2.0"
+export CARGO_HOME="$XDG_DATA_HOME/cargo"
+export GNUPGNOME="$XDG_DATA_HOME/gnupg"
+eval "$(dircolors "$HOME/.config/dir_colors")"
+# Start sway automatically upon login on tty1
if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
- sway && clear && exit
+ sway > ~/.cache/sway.log 2>&1 && clear && exit
fi