18 lines
402 B
Cheetah
18 lines
402 B
Cheetah
{{- if (eq .chezmoi.os "linux") -}}
|
|
export QT_AUTO_SCREEN_SCALE_FACTOR=1
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
{{ end }}
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
# User specific aliases and functions
|
|
if [ -d "$HOME/.config/bash" ]; then
|
|
for rc in $HOME/.config/bash/*; do
|
|
if [ -f "$rc" ]; then
|
|
# shellcheck source=/dev/null
|
|
. "$rc"
|
|
fi
|
|
done
|
|
fi
|
|
unset rc
|