14 lines
406 B
Bash
14 lines
406 B
Bash
export QT_QPA_PLATFORMTHEME="qt5ct"
|
|
xset b off
|
|
export SUDO_ASKPASS="$HOME/.local/bin/rofipass"
|
|
fix-tweaked-desktop-files &
|
|
|
|
# Show color output in less
|
|
export LESS=-R
|
|
export LESS_TERMCAP_mb=$'\e[1;31m'
|
|
export LESS_TERMCAP_md=$'\e[1;36m'
|
|
export LESS_TERMCAP_me=$'\e[0m'
|
|
export LESS_TERMCAP_so=$'\e[01;44;33m'
|
|
export LESS_TERMCAP_se=$'\e[0m'
|
|
export LESS_TERMCAP_us=$'\e[1;32m'
|
|
export LESS_TERMCAP_ue=$'\e[0m' |