14 lines
333 B
Bash
14 lines
333 B
Bash
#!/bin/zsh
|
|
# SUDO
|
|
export SUDO_ASKPASS=/bin/rofi-askpass
|
|
|
|
# XDG
|
|
export XDG_CACHE_HOME="$HOME/.cache"
|
|
export XDG_DATA_HOME="$HOME/.local/share"
|
|
export XDG_CONFIG_HOME="$HOME/.config"
|
|
|
|
# Path to your oh-my-zsh installation.
|
|
export ZSH="$XDG_DATA_HOME/oh-my-zsh"
|
|
export ZSH_CUSTOM="$ZSH/custom"
|
|
export ZSH_PLUGINS="$ZSH_CUSTOM/plugins"
|
|
|