├── .vscode └── launch.json ├── LICENSE.md ├── Makefile ├── README.md ├── assets └── screenshot.png ├── autorun.go ├── go.mod ├── go.sum ├── init ├── inputs.go ├── keybindings.go ├── main.go ├── options.go ├── riverdot ├── rofi └── config.rasi ├── runners.go ├── tags.go ├── theme.go └── waybar ├── config.json └── style.css /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /autorun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/autorun.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module riverdot 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/init -------------------------------------------------------------------------------- /inputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/inputs.go -------------------------------------------------------------------------------- /keybindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/keybindings.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/main.go -------------------------------------------------------------------------------- /options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/options.go -------------------------------------------------------------------------------- /riverdot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/riverdot -------------------------------------------------------------------------------- /rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/rofi/config.rasi -------------------------------------------------------------------------------- /runners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/runners.go -------------------------------------------------------------------------------- /tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/tags.go -------------------------------------------------------------------------------- /theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/theme.go -------------------------------------------------------------------------------- /waybar/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/waybar/config.json -------------------------------------------------------------------------------- /waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prmadev/River-Dotfiles/HEAD/waybar/style.css --------------------------------------------------------------------------------