Skip to content

Commit

Permalink
Merge pull request #685 from twpayne/media
Browse files Browse the repository at this point in the history
Add media page
  • Loading branch information
twpayne committed Apr 19, 2020
2 parents c02d8e3 + 35cc601 commit f642fb4
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 17 deletions.
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,18 +135,19 @@ Then you've probably run into at least one of the following problems:
system, chezmoi already has a tried-and-tested solution ready to use.

* If your system is written in a scripting language like Python, Perl, or Ruby,
then you also need ensure that that language's runtime is installed. chezmoi
is distributed as a single stand-alone statically-linked binary with no
dependencies that you can simply copy onto your machine and run. chezmoi
provides one-line installs, pre-built binaries, packages for Linux and BSD
distributions, Homebrew formulae, Scoop support on Windows, and a initial
config file generation mechanism to make installing your dotfiles on a new
machine as painless as possible.
then you also need to install that language's runtime before you can use your
system. chezmoi is distributed as a single stand-alone statically-linked
binary with no dependencies that you can simply copy onto your machine and
run. chezmoi provides one-line installs, pre-built binaries, packages for
Linux and BSD distributions, Homebrew formulae, Scoop support on Windows, and
a initial config file generation mechanism to make installing your dotfiles on
a new machine as painless as possible.

## What does a chezmoi dotfile repo look like?

Have a look at [repos tagged with `chezmoi` on
GitHub](https://github.com/topics/chezmoi?o=desc&s=updated).
GitHub](https://github.com/topics/chezmoi?o=desc&s=updated). You can also read
what [has been written about chezmoi](docs/MEDIA.md).

## How do I start with chezmoi?

Expand Down
4 changes: 4 additions & 0 deletions chezmoi.io/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ content-docs: \
content/docs/faq.md \
content/docs/how-to.md \
content/docs/install.md \
content/docs/media.md \
content/docs/quick-start.md \
content/docs/reference.md

Expand All @@ -27,6 +28,9 @@ content/docs/how-to.md: ../docs/HOWTO.md ../internal/generate-chezmoi.io-content
content/docs/install.md: ../docs/INSTALL.md ../internal/generate-chezmoi.io-content-docs/main.go Makefile
go run ../internal/generate-chezmoi.io-content-docs -shorttitle="Install" -longtitle="Install Guide" < $< > $@ || ( rm -f $@ ; false )

content/docs/media.md: ../docs/MEDIA.md ../internal/generate-chezmoi.io-content-docs/main.go Makefile
go run ../internal/generate-chezmoi.io-content-docs -shorttitle="Media" -longtitle="Media" < $< > $@ || ( rm -f $@ ; false )

content/docs/quick-start.md: ../docs/QUICKSTART.md ../internal/generate-chezmoi.io-content-docs/main.go Makefile
go run ../internal/generate-chezmoi.io-content-docs -shorttitle="Quick Start" -longtitle="Quick Start Guide" < $< > $@ || ( rm -f $@ ; false )

Expand Down
17 changes: 9 additions & 8 deletions chezmoi.io/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,18 +118,19 @@ Then you've probably run into at least one of the following problems:
system, chezmoi already has a tried-and-tested solution ready to use.

* If your system is written in a scripting language like Python, Perl, or Ruby,
then you also need ensure that that language's runtime is installed. chezmoi
is distributed as a single stand-alone statically-linked binary with no
dependencies that you can simply copy onto your machine and run. chezmoi
provides one-line installs, pre-built binaries, packages for Linux and BSD
distributions, Homebrew formulae, Scoop support on Windows, and a initial
config file generation mechanism to make installing your dotfiles on a new
machine as painless as possible.
then you also need to install that language's runtime before you can use your
system. chezmoi is distributed as a single stand-alone statically-linked
binary with no dependencies that you can simply copy onto your machine and
run. chezmoi provides one-line installs, pre-built binaries, packages for
Linux and BSD distributions, Homebrew formulae, Scoop support on Windows, and
a initial config file generation mechanism to make installing your dotfiles on
a new machine as painless as possible.

## What does a chezmoi dotfile repo look like?

Have a look at [repos tagged with `chezmoi` on
GitHub](https://github.com/topics/chezmoi?o=desc&s=updated).
GitHub](https://github.com/topics/chezmoi?o=desc&s=updated). You can also read
what [has been written about chezmoi](/docs/media/).

## How do I start with chezmoi?

Expand Down
14 changes: 14 additions & 0 deletions cmd/docs.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions docs/MEDIA.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# chezmoi in the media

| Language | Date | Version | Format | Link |
| -------- | ---------- | ------- | ------------ | ------------------------------------------------------------------------------------------------------------------------- |
| FR | 2020-04-16 | 1.17.19 | Text | [Chezmoi, visite guidée](https://blog.wescale.fr/2020/04/16/chezmoi-visite-guidee/) |
| EN | 2020-04-03 | 1.7.17 | Text | [Fedora Magazine: Take back your dotfiles with Chezmoi](https://fedoramagazine.org/take-back-your-dotfiles-with-chezmoi/) |
| EN | 2019-11-20 | 1.7.2 | Audio/video | [FLOSS weekly episode 556: chezmoi](https://twit.tv/shows/floss-weekly/episodes/556) |
| EN | 2019-01-10 | 0.0.11 | Text | [Linux Fu: The kitchen sync](https://hackaday.com/2019/01/10/linux-fu-the-kitchen-sync/) |

To add your article to this page please either [open an
issue](https://github.com/twpayne/chezmoi/issues/new/choose) or submit a pull
request that modifies this file
([`docs/MEDIA.md`](https://github.com/twpayne/chezmoi/blob/master/docs/MEDIA.md)).
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:generate go run ./internal/generate-assets -o cmd/docs.gen.go -tags=!noembeddocs docs/CHANGES.md docs/CONTRIBUTING.md docs/FAQ.md docs/HOWTO.md docs/INSTALL.md docs/QUICKSTART.md docs/REFERENCE.md
//go:generate go run ./internal/generate-assets -o cmd/docs.gen.go -tags=!noembeddocs docs/CHANGES.md docs/CONTRIBUTING.md docs/FAQ.md docs/HOWTO.md docs/INSTALL.md docs/MEDIA.md docs/QUICKSTART.md docs/REFERENCE.md
//go:generate go run ./internal/generate-assets -o cmd/templates.gen.go assets/templates/COMMIT_MESSAGE.tmpl
//go:generate go run ./internal/generate-helps -o cmd/helps.gen.go -i docs/REFERENCE.md

Expand Down

0 comments on commit f642fb4

Please sign in to comment.