17 lines
440 B
Bash
17 lines
440 B
Bash
# Sync the QT with GTK
|
|
export QT_QPA_PLATFORMTHEME="qt6gtk2"
|
|
export QT_AUTO_SCREEN_SCALE_FACTOR=1
|
|
|
|
# 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'
|
|
|
|
# Disable the beep sound
|
|
[ -n "$DISPLAY" ] && xset b off
|