37 lines
1 KiB
Bash
37 lines
1 KiB
Bash
# Sample .bashrc for SUSE Linux
|
|
# Copyright (c) SUSE Software Solutions Germany GmbH
|
|
|
|
# There are 3 different types of shells in bash: the login shell, normal shell
|
|
# and interactive shell. Login shells read ~/.profile and interactive shells
|
|
# read ~/.bashrc; in our setup, /etc/profile sources ~/.bashrc - thus all
|
|
# settings made here will also take effect in a login shell.
|
|
#
|
|
# NOTE: It is recommended to make language settings in ~/.profile rather than
|
|
# here, since multilingual X sessions would not work properly if LANG is over-
|
|
# ridden in every subshell.
|
|
|
|
test -s ~/.alias && . ~/.alias || true
|
|
|
|
|
|
#function set_perllib() {
|
|
# if [[ "$PWD" == "$HOME/work/os-autoinst-distri-opensuse"* ]]; then
|
|
# export PERL5LIB="$HOME/work/os-autoinst-distri-opensuse/lib"
|
|
# else
|
|
# unset PERL5LIB
|
|
# fi
|
|
#}
|
|
|
|
#PROMPT_COMMAND="set_perllib;$PROMPT_COMMAND"
|
|
|
|
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
export QUTE_PASS_MENU=rofi
|
|
|
|
export TERMINAL=kitty
|
|
export EDITOR="nvim"
|
|
|
|
export PATH="$PATH:/home/michael/bin/yubico-authenticator-7.2.3-linux"
|
|
|
|
eval "$(keychain --quiet --eval --agents ssh)"
|
|
|
|
|