From 41a768508b5d624f4b6c0dc823ada889f777146c Mon Sep 17 00:00:00 2001 From: esche Date: Mon, 30 Sep 2024 21:50:08 +0200 Subject: [PATCH] added bashrc and editet readme --- bashrc | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 bashrc diff --git a/bashrc b/bashrc new file mode 100644 index 0000000..17d87ee --- /dev/null +++ b/bashrc @@ -0,0 +1,36 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +alias ls='ls --color=auto' +alias grep='grep --color=auto' +PS1='[\u@\h \W]\$ ' + + +## user generated stuff for wayland +export XDG_SESSION_TYPE="wayland" +export QT_QPA_PLATFORM="wayland;xcb" +export SDL_VIDEODRIVER="wayland,x11" +export _JAVA_AWT_WM_NONREPARENTING=1 +export MOZ_ENABLE_WAYLAND=1 +export BEMENU_BACKEND=wayland + +## Theming +export GTK_THEME="Adwaita:dark" +export QT_STYLE_OVERRIDE=adwaita-dark + +## Shell +eval "$(starship init bash)" +alias ls="exa" +alias ll="exa -l -g --icons --git" +alias llt="exa -1 --icons --tree --git-ignore" +alias cat="bat" +alias find="fd" +alias ps="procs" +alias du="dust" +alias grep="rg" +alias top="btm" +alias vimdiff="delta"