modified: install/chmod.sh -> .git 664

new file:   usr/etc/systemd/sleep.conf -> no hibernation but freeze
modified:   usr/home/.bash_aliases -> src but still doesn't work
This commit is contained in:
archikid08
2026-02-23 18:29:17 +01:00
parent 08f385e20f
commit 45f4ae2458
3 changed files with 32 additions and 2 deletions
+2 -1
View File
@@ -29,11 +29,12 @@ alias s="sudo -E"
function src() {
d="$PWD"; while [ "$d" != "/" ]; do
for a in "$d/bin/activate" "$d/.*/bin/activate"; do
#echo "looking bin/activate in $d"
[ -f $a ] && source "$a" && break 2
done
d=$(dirname "$d")
done
source $HOME/.bashrc
source $HOME/.bashrc || true
}