Updateeeeee

This commit is contained in:
Antoine Phan
2024-09-27 14:09:46 -04:00
parent c2472349aa
commit 0637dceca8
3 changed files with 14 additions and 16 deletions

View File

@@ -25,3 +25,13 @@ Essentially, you can do whatever you want with this and no need to credit me for
# Notes
- Network interface is set to `wlan0`
# Useful commands:
- Getting all the local packages (`pacman`)
```sh
pacman -Qs | grep "local/" | awk '{print $1}' - | awk -F '/' '{print $2}' > allPackages.txt
```
- (Re)Installing all packages back
```sh
cat allPackages.txt | yay -S - --needed
```