Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jake-pauls/.dotfiles
Constantly in-progress set of config files for things like Awesome, Neovim, and zsh. Protecting these with my life. 💖
https://github.com/jake-pauls/.dotfiles
archlinux awesomewm dotfiles linux neovim nord skynet zsh
Last synced: about 1 month ago
JSON representation
Constantly in-progress set of config files for things like Awesome, Neovim, and zsh. Protecting these with my life. 💖
- Host: GitHub
- URL: https://github.com/jake-pauls/.dotfiles
- Owner: jake-pauls
- License: apache-2.0
- Created: 2021-04-13T04:23:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-09T23:46:22.000Z (about 2 months ago)
- Last Synced: 2024-09-10T03:22:23.112Z (about 2 months ago)
- Topics: archlinux, awesomewm, dotfiles, linux, neovim, nord, skynet, zsh
- Language: Lua
- Homepage:
- Size: 17.6 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
.dotfiles
## Overview (✨ what I'm currently having fun with ✨)
- **OS** - [ArcoLinux](https://arcolinux.com/)
- **Window Manager** - [Awesome](https://awesomewm.org/)
- **Text Editor** - [Neovim](https://neovim.io/)
- **Terminal** - [Alacritty](https://github.com/alacritty/alacritty)
- **Shells**
- [zsh](https://www.zsh.org/)
- **Shell Prompt** - [Starship](https://starship.rs/)
- **Package Managers**
- [pacman](https://wiki.archlinux.org/title/pacman) (Arch Base Repositories)
- [yay](https://github.com/Jguer/yay) (AUR)
- **File Managers**
- [pcmanfm](https://wiki.archlinux.org/title/PCManFM) (GUI)
- **Document Reader** - [zathura](https://pwmt.org/projects/zathura/)
- **CLI Tools**
- [bat](https://github.com/sharkdp/bat)
- [ripgrep](https://github.com/BurntSushi/ripgrep)
- [fd](https://github.com/sharkdp/fd)## Personal Note: Dual Booting Arch/Windows (Legacy/BIOS)
Couldn't find as many straight forward resources regarding legacy dual booting for Arch/Windows clients.
The Arch wiki provids some insight, but if your partitioning on both machines was performed correctly - this should work perfectly fine.0. For dual booting Arch, follow the main installation guide until installing a boot loader.
1. Install the following packages:```
pacman -S grub os-prober ntfs-3g
```
2. Run the grub installer (specify EFI target if using a UEFI installation)
**Note: `/dev/sdX` refers to the disk containing both OSes.**
```
grub-install --target=i386-pc /dev/sdX
```
3. Run os-prober to search for additional boot loaders
```
os-prober
```
**Note: A log should appear signifying a recognized windows installation, for me - it recognized the __system reserved__ partition in particular.**4. Create the grub configuration file
```
grub-mkconfig -o /boot/grub/grub.cfg
```
Grub should identify the windows boot loader partition when generating the config.