initial commit

This commit is contained in:
2023-06-25 06:46:53 -04:00
commit dc24aada7b
9 changed files with 145 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
# Workstation Setup
This is my standard workstation config for my desktop and laptop.
## Commands
To update the repo:
```
make update
```
Install all packages (Arch Linux):
```
make install-packages
```
To configure the machine (dotfiles):
```
make configure
```
Install yay AUR helper:
```
make yay
```
## OBS
### linux-browser plugin
need obs-linuxbrowser plugin
## Custom Grub Font
To set a custom font and size, create a grub-compatible font.
```
grub-mkfont -s 60 -o /boot/grubfont.pf2 /usr/share/fonts/TTF/Hack-Regular.ttf
```
Then add the following in `/etc/default/grub`.
```
GRUB_FONT="/boot/grubfont.pf2"
```
Regenerate the grub config.
```
grub-mkconfig -o /boot/grub/grub.cfg