55 lines
807 B
Markdown
55 lines
807 B
Markdown
# 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
|
|
```
|
|
|
|
## Credits
|
|
[joshrosso](https://twitter.com/joshrosso) - original creator of these install scripts
|