summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bashrc13
-rw-r--r--.config/qtile/config.py2
2 files changed, 10 insertions, 5 deletions
diff --git a/.bashrc b/.bashrc
index b13facd..afc481c 100644
--- a/.bashrc
+++ b/.bashrc
@@ -1,8 +1,15 @@
source ~/.shells/alias.sh
source ~/.shells/exports.sh
-#source ~/dotfiles/.shells/bash_completion
+source /etc/profile
export PATH=/home/$USER/.local/bin:$PATH
+if [ -e /etc/profile.env ] ; then
+ . /etc/profile.env
+fi
+
+for sh in /etc/profile.d/*.sh ; do
+ [ -r "$sh" ] && . "$sh"
+done
## Get completions
for sh in /etc/bash/bashrc.d/* ; do
@@ -16,9 +23,7 @@ else
PS1+='\u@\h \w \$ '
fi
-## eat integration
-# [ -n "$EAT_SHELL_INTEGRATION_DIR" ] && \
-# source "$EAT_SHELL_INTEGRATION_DIR/bash"
+
## doas > sudo
complete -cf doas
diff --git a/.config/qtile/config.py b/.config/qtile/config.py
index cad1991..ebf2dcd 100644
--- a/.config/qtile/config.py
+++ b/.config/qtile/config.py
@@ -73,7 +73,7 @@ def float_my_app(window):
def init_widgets_defaults():
"""Set widget default settings."""
return dict(font="JetBrains Mono",
- fontsize=12,
+ fontsize=14,
padding=2,
foreground=dracula["fg"],
background=dracula["bg"]