Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vncsmyrnk/dotfiles
My linux config for general purposes
https://github.com/vncsmyrnk/dotfiles
dotfiles
Last synced: 11 days ago
JSON representation
My linux config for general purposes
- Host: GitHub
- URL: https://github.com/vncsmyrnk/dotfiles
- Owner: vncsmyrnk
- License: gpl-3.0
- Created: 2024-08-17T14:19:50.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-22T00:42:24.000Z (26 days ago)
- Last Synced: 2024-10-22T22:39:57.666Z (25 days ago)
- Topics: dotfiles
- Language: Just
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Config Utils ⚙️
My linux tools config for general purposes.
Each config tool is a submodule and must be able to install itself.
## Motivation
- Gather all configuration files for general purpose _CLI_ tools in one place.
- Have a unique and modular installer## Strcuture expected
Each module must have a `justfile` with the following recipes:
- `install`: Install dependencies and run configuration commands (usually with `stow`)
- `config`: Run the config commands only
- `delete-config`: Undo the config (usually with `stow -D`)## Usage
```bash
git clone [email protected]:vncsmyrnk/dotfiles.git $HOME
cd $HOME/dotfiles
git submodule init
git submodule update
just install # or `just config`
```