https://github.com/carapace-sh/freckles
A simple dotfile manager.
https://github.com/carapace-sh/freckles
carapace dotfile manager
Last synced: 27 days ago
JSON representation
A simple dotfile manager.
- Host: GitHub
- URL: https://github.com/carapace-sh/freckles
- Owner: carapace-sh
- License: mit
- Created: 2020-11-11T12:03:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-04-14T18:25:29.000Z (about 1 month ago)
- Last Synced: 2025-04-14T19:35:20.623Z (about 1 month ago)
- Topics: carapace, dotfile, manager
- Language: Go
- Homepage: https://freckles.carapace.sh
- Size: 1.92 MB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# freckles
[](https://pkg.go.dev/github.com/rsteube/freckles)
[](https://goreportcard.com/report/github.com/rsteube/freckles)
[](https://coveralls.io/github/rsteube/freckles?branch=master)
[](https://freckles.carapace.sh)
[](https://repology.org/project/freckles/versions)A simple dotfile manager based on [carapace](https://github.com/rsteube/carapace) using the symlink approach.
[](https://asciinema.org/a/499658)
## Completion
```sh
# bash
source <(freckles _carapace)# elvish
eval (freckles _carapace|slurp)# fish
freckles _carapace | source# oil
source <(freckles _carapace)# nushell
freckles _carapace | save freckles.nu ; nu -c 'source freckles.nu'# powershell
freckles _carapace | Out-String | Invoke-Expression# tcsh
eval `freckles _carapace`# xonsh
exec($(freckles _carapace))# zsh
source <(freckles _carapace)
```