2025-09-05 18:07:44 +02:00
|
|
|
# never-dotfiles
|
|
|
|
|
|
2025-09-08 14:52:21 +02:00
|
|
|
My configuration for niri and noctalia-shell
|
|
|
|
|
|
|
|
|
|
## Dependencies
|
|
|
|
|
|
|
|
|
|
### noctalia-shell
|
|
|
|
|
|
|
|
|
|
Enable quickshell copr
|
|
|
|
|
```bash
|
|
|
|
|
sudo dnf copr enable errornointernet/quickshell
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Enable cliphist copr
|
|
|
|
|
```bash
|
|
|
|
|
sudo dnf copr enable alternateved/cliphist
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Enable gpu-screen-recorder-git copr
|
|
|
|
|
```bash
|
|
|
|
|
sudo dnf copr enable brycensranch/gpu-screen-recorder-git
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Install noctalia-shell dependendies
|
|
|
|
|
```bash
|
|
|
|
|
sudo dnf install quickshell-git google-roboto-fonts rsms-inter-fonts gpu-screen-recorder brightnessctl ddcutil cliphist cava wlsunset xdg-desktop-portal
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Apps
|
|
|
|
|
|
2025-09-08 15:10:39 +02:00
|
|
|
Install neovim and dependencies for kickstart.nvim
|
2025-09-08 14:52:21 +02:00
|
|
|
```bash
|
2025-09-08 15:10:39 +02:00
|
|
|
sudo dnf install gcc make git ripgrep fd-find unzip neovim
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Install other apps
|
|
|
|
|
```bash
|
|
|
|
|
sudo dnf install fish kitty niri qutebrowser thunderbird zathura zathura-plugins-all zathura-fish-completion zathura-pdf-mupdf
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
Install GNU Stow
|
|
|
|
|
```bash
|
|
|
|
|
sudo dnf install stow
|
|
|
|
|
```
|
|
|
|
|
|
2025-09-08 15:21:52 +02:00
|
|
|
Clone dotfiles into home folder
|
|
|
|
|
```bash
|
|
|
|
|
git clone https://git.nevereverever.de/never/dotfiles.git ~/.dotfiles/
|
2025-09-08 15:10:39 +02:00
|
|
|
```
|
|
|
|
|
|
2025-09-08 15:21:52 +02:00
|
|
|
Stow configuration using ```stow```
|
2025-09-08 15:10:39 +02:00
|
|
|
```bash
|
2025-09-08 15:21:52 +02:00
|
|
|
cd .dotfiles/
|
2025-09-08 15:10:39 +02:00
|
|
|
```
|
|
|
|
|
```bash
|
2025-09-08 15:21:52 +02:00
|
|
|
stow ./
|
2025-09-08 14:52:21 +02:00
|
|
|
```
|
|
|
|
|
|