New backup 2025-11-09 16:30:02

This commit is contained in:
Penelope Gwen 2025-11-09 16:30:02 -08:00
parent 49884543ef
commit 0ee18349d7
3 changed files with 18 additions and 8 deletions

View file

@ -173,7 +173,7 @@ SetEditor=false
2 screens: Height=1119 2 screens: Height=1119
2 screens: Width=490 2 screens: Width=490
2048x1280 screen: Height=1199 2048x1280 screen: Height=1199
2048x1280 screen: Width=1005 2048x1280 screen: Width=2024
3 screens: Height=659 3 screens: Height=659
3 screens: Width=1160 3 screens: Width=1160

View file

@ -24,11 +24,6 @@ ShowSelector=0
StartWithLastProfile=1 StartWithLastProfile=1
Version=2 Version=2
[Profile4]
Name=testing
IsRelative=1
Path=4z689ygf.testing
[Install6C4726F70D182CF7] [Install6C4726F70D182CF7]
Default=penelope Default=penelope
Locked=1 Locked=1
@ -38,3 +33,8 @@ Name=School
IsRelative=1 IsRelative=1
Path=school Path=school
[Profile4]
Name=testing
IsRelative=1
Path=4z689ygf.testing

View file

@ -78,8 +78,8 @@ pwatch(){
process_search(){ process_search(){
if [[ -z ${1} ]];then if [[ -z ${1} ]];then
printf 'no search arg provided' printf 'no search arg provided\n'
exit 1 return 1
fi fi
ps aux | grep -ie "${1}" ps aux | grep -ie "${1}"
} }
@ -109,6 +109,16 @@ network-status() {
sudo journalctl -u NetworkManager.service -u openvpn.service --lines="${loglength}" --follow sudo journalctl -u NetworkManager.service -u openvpn.service --lines="${loglength}" --follow
} }
tb-encrypt(){
if ! [[ -f "${1}" || -d "${1}" ]];then
printf 'no path provided\n'
return 1
fi
tar -czf - "${1}" | openssl enc -e -aes256 -out secured.tar.gz
}
tb-decrypt(){
openssl enc -d -aes256 -in secured.tar.gz | tar xz -C test
}
alias quickdeb='dpkg-buildpackage -b -tc' alias quickdeb='dpkg-buildpackage -b -tc'
alias gituntracked='git ls-files . --exclude-standard --others' alias gituntracked='git ls-files . --exclude-standard --others'
alias gitdiff='git diff --name-only' alias gitdiff='git diff --name-only'