73 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| set -a
 | |
| . "$HOME/.config/user-dirs.dirs"
 | |
| . "$XDG_CONFIG_HOME/locale.conf"
 | |
| set +a
 | |
| 
 | |
| export ANDROID_SDK_ROOT='/opt/android-sdk'
 | |
| export AUTOSTART_DISPLAY='startx'
 | |
| 
 | |
| export BEMENU_OPTS="--tb '#6272a4'\
 | |
|  --tf '#f8f8f2'\
 | |
|  --fb '#282a36'\
 | |
|  --ff '#f8f8f2'\
 | |
|  --nb '#282a36'\
 | |
|  --nf '#6272a4'\
 | |
|  --hb '#44475a'\
 | |
|  --hf '#50fa7b'\
 | |
|  --sb '#44475a'\
 | |
|  --sf '#50fa7b'\
 | |
|  --scb '#282a36'\
 | |
|  --scf '#ff79c6'\
 | |
|  --list 25 --ignorecase"
 | |
| 
 | |
| export CM_LAUNCHER='rofi'
 | |
| 
 | |
| export DOCKER_BUILDKIT=1
 | |
| export DRONE_SERVER='https://ci.serguzim.me'
 | |
| 
 | |
| export EDITOR='/usr/bin/vim'
 | |
| 
 | |
| export GOPATH="$XDG_DATA_HOME/go"
 | |
| 
 | |
| _hostname=$(cat /proc/sys/kernel/hostname)
 | |
| export HOSTNAME="$_hostname"
 | |
| 
 | |
| export KUBECONFIG="$HOME/.kube/config"
 | |
| 
 | |
| export MAILCAPS="$XDG_CONFIG_HOME/mailcap/mailcaprc"
 | |
| _makeflags=$(grep -c ^processor /proc/cpuinfo)
 | |
| export MAKEFLAGS="-j$_makeflags"
 | |
| export MARKPATH="$XDG_CONFIG_HOME/zsh/jump_marks"
 | |
| export MENU="bemenu"
 | |
| 
 | |
| export NOTMUCH_CONFIG="$XDG_CONFIG_HOME/notmuch/config"
 | |
| 
 | |
| export OPENFAAS_URL="https://faas.serguzim.me"
 | |
| export OSH="$XDG_CONFIG_HOME/bash/oh-my-bash"
 | |
| 
 | |
| export PASSWORD_STORE_GENERATED_LENGTH='64'
 | |
| export PATH="$PATH:$HOME/.local/bin:$GOPATH/bin:$HOME/.cargo/bin:$HOME/.bin"
 | |
| 
 | |
| export QT_QPA_PLATFORM="wayland;xcb"
 | |
| export QT_QPA_PLATFORMTHEME="qt5ct"
 | |
| 
 | |
| #export SDL_VIDEODRIVER="wayland"
 | |
| 
 | |
| export TERMINAL="alacritty"
 | |
| 
 | |
| export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc"
 | |
| 
 | |
| export WOODPECKER_SERVER="https://ci.serguzim.me"
 | |
| 
 | |
| export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
 | |
| export ZSH="$ZDOTDIR/oh-my-zsh"
 | |
| 
 | |
| ### conditionals
 | |
| 
 | |
| [ -x "$(command -v bat)" ] && export MANPAGER="sh -c 'col -bx | bat -l man -p'"
 | |
| 
 | |
| set -a
 | |
| [ -f "$HOME/.config/environment.local" ] && . "$HOME/.config/environment.local"
 | |
| set +a
 |