diff options
Diffstat (limited to '.profile')
-rw-r--r-- | .profile | 13 |
1 files changed, 2 insertions, 11 deletions
@@ -1,19 +1,13 @@ #!/bin/sh # Filip's .profile -# do wywalenia -[ "$( pgrep -c slstatus )" -eq 0 ] && slstatus & -. "$HOME/.cargo/env" +# Environmental variables -### Environmental variables - -# Default programs export BROWSER="librewolf" export EDITOR="vim" export SHELL="zsh" export TERMINAL="st" export IMAGE_VIEWER="sxiv" - export SCRIPTS="$HOME/.scripts" export ALIASRC="$HOME/.config/shell/aliasrc" export VIMINFO="$HOME/.config/vim/.viminfo" @@ -23,16 +17,13 @@ export MANPAGER="vim -M +MANPAGER -" export PATH="$SCRIPTS:$HOME/.cargo/bin:$HOME/.local/bin:$PATH" export XDG_CONFIG_HOME="$HOME/.config" export XDG_DATA_HOME="$HOME/.config" -export STARDICT_DATA_DIR="$HOME/.local/share/stardict" # Use custom remaps from the script - -autostart="remaps xcompmgr xhidecursor" +autostart="remaps xcompmgr xhidecursor slstatus" for program in $autostart; do pidof -sx "$program" || "$program" & done >/dev/null 2>&1 # Set wallpaper - xwallpaper --stretch "$HOME"/pix/wallpaper.jpg |