Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mehvix/dots
···
https://github.com/mehvix/dots
dotfiles mpv-config scripts vim-configuration
Last synced: 9 days ago
JSON representation
···
- Host: GitHub
- URL: https://github.com/mehvix/dots
- Owner: Mehvix
- License: gpl-3.0
- Created: 2021-08-02T07:23:19.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-01T19:01:47.000Z (2 months ago)
- Last Synced: 2024-10-11T03:16:50.705Z (26 days ago)
- Topics: dotfiles, mpv-config, scripts, vim-configuration
- Language: Shell
- Homepage: https://mhvx.us/dots
- Size: 654 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotfiles
## stow
I use [GNU Stow](https://www.gnu.org/software/stow/) to manage dotfiles in the `stow` directory. Examples below:
### Track `.file` in `dir` (typically `~`):
```shell
$ mkdir program
$ touch program/.file
$ stow --adopt -nvt dir program # verify command is safe and symlinks .file
$ stow --adopt -vt dir program
```### Untrack zsh files:
```shell
$ stow -Dvt ~ zsh
```## manual
`dconf-cinnamon.ini` is exported via ```dconf dump /org/cinnamon/ > file.ini``` and can be loaded with ```dconf load / < file.ini```
This is because `~/.config/dconf` isn't plaintext. See [here](https://github.com/linuxmint/Cinnamon/wiki/Backing-up-and-restoring-your-cinnamon-settings-(dconf)) for more details.