From 4c7293f9a567e471140b695cb2c6be9365770ebb Mon Sep 17 00:00:00 2001 From: Nikita Bobko Date: Sat, 23 Nov 2024 14:04:38 +0100 Subject: [PATCH] Rename goodness to goodies --- CONTRIBUTING.md | 2 +- README.md | 2 +- build-docs.sh | 3 ++- docs/config-examples/default-config.toml | 2 +- docs/config-examples/i3-like-config-example.toml | 2 +- docs/{goodness.adoc => goodies.adoc} | 2 +- docs/guide.adoc | 8 ++++---- docs/util/header.adoc | 2 +- 8 files changed, 12 insertions(+), 11 deletions(-) rename docs/{goodness.adoc => goodies.adoc} (99%) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c527be38..2621efe9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -98,7 +98,7 @@ Do you like the project? Does AeroSpace finally fix your problems with windows m ## Share your workflow and tips -Submit your tips to [the Goodness page](https://nikitabobko.github.io/AeroSpace/goodness). The source code of the page can be found in `./docs` directory +Submit your tips to [the Goodies page](https://nikitabobko.github.io/AeroSpace/goodies). The source code of the page can be found in `./docs` directory ## Support the project financially diff --git a/README.md b/README.md index 7d0e8368..f85f1e4f 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Videos: Docs: - [AeroSpace Guide](https://nikitabobko.github.io/AeroSpace/guide) - [AeroSpace Commands](https://nikitabobko.github.io/AeroSpace/commands) -- [AeroSpace Goodness](https://nikitabobko.github.io/AeroSpace/goodness) +- [AeroSpace Goodies](https://nikitabobko.github.io/AeroSpace/goodies) ## Project status diff --git a/build-docs.sh b/build-docs.sh index 7373c5a6..513fca02 100755 --- a/build-docs.sh +++ b/build-docs.sh @@ -27,7 +27,8 @@ build-site() { cd .site # Delete "aerospace " prefifx in synopsis sed -E -i '' '/tag::synopsis/, /end::synopsis/ s/^(aerospace | {10})//' aerospace* - bundler exec asciidoctor ./guide.adoc ./commands.adoc ./goodness.adoc + bundler exec asciidoctor ./guide.adoc ./commands.adoc ./goodies.adoc + cp goodies.html goodness.html # backwards compatibility rm -rf ./*.adoc cd - > /dev/null diff --git a/docs/config-examples/default-config.toml b/docs/config-examples/default-config.toml index c50d36a1..705a4e9c 100644 --- a/docs/config-examples/default-config.toml +++ b/docs/config-examples/default-config.toml @@ -40,7 +40,7 @@ on-focused-monitor-changed = ['move-mouse monitor-lazy-center'] # You can effectively turn off macOS "Hide application" (cmd-h) feature by toggling this flag # Useful if you don't use this macOS feature, but accidentally hit cmd-h or cmd-alt-h key -# Also see: https://nikitabobko.github.io/AeroSpace/goodness#disable-hide-app +# Also see: https://nikitabobko.github.io/AeroSpace/goodies#disable-hide-app automatically-unhide-macos-hidden-apps = false # Possible values: (qwerty|dvorak) diff --git a/docs/config-examples/i3-like-config-example.toml b/docs/config-examples/i3-like-config-example.toml index 98b4df53..272b87d2 100644 --- a/docs/config-examples/i3-like-config-example.toml +++ b/docs/config-examples/i3-like-config-example.toml @@ -11,7 +11,7 @@ enable-normalization-opposite-orientation-for-nested-containers = false on-focused-monitor-changed = ['move-mouse monitor-lazy-center'] [mode.main.binding] -# See: https://nikitabobko.github.io/AeroSpace/goodness#open-a-new-window-with-applescript +# See: https://nikitabobko.github.io/AeroSpace/goodies#open-a-new-window-with-applescript alt-enter = '''exec-and-forget osascript -e ' tell application "Terminal" do script diff --git a/docs/goodness.adoc b/docs/goodies.adoc similarity index 99% rename from docs/goodness.adoc rename to docs/goodies.adoc index b71c3d8d..b0d9c70a 100644 --- a/docs/goodness.adoc +++ b/docs/goodies.adoc @@ -1,4 +1,4 @@ -= AeroSpace Goodness += AeroSpace Goodies include::util/site-attributes.adoc[] include::util/header.adoc[] diff --git a/docs/guide.adoc b/docs/guide.adoc index 2188bfbc..7de66e2f 100644 --- a/docs/guide.adoc +++ b/docs/guide.adoc @@ -75,7 +75,7 @@ If the config is found in more than one location then the ambiguity is reported. Please see the following config samples: * <> -* xref:goodness.adoc#i3-like-config[i3 like config] +* xref:./goodies.adoc#i3-like-config[i3 like config] * {url-search-for-config}[Search for configs by other users on GitHub] for inspiration AeroSpace uses TOML format for the config. @@ -187,7 +187,7 @@ alt-unicorn = 'workspace wonderland' # (⁀ᗢ⁀) preset = 'dvorak' ---- -* For `colemak` users, there is xref:goodness.adoc#colemak-keys-remap[a compiled mapping]. +* For `colemak` users, there is xref:./goodies.adoc#colemak-keys-remap[a compiled mapping]. `colemak` may be added as preconfigured preset similar to `dvorak` in the future, if there is enough demand [#exec-env-vars] @@ -533,7 +533,7 @@ a| There are several ways to know `app-id`: -* Take a look at precomposed xref:goodness.adoc#popular-apps-ids[list of popular application IDs] +* Take a look at precomposed xref:./goodies.adoc#popular-apps-ids[list of popular application IDs] * You can use xref:commands.adoc#list-apps[`aerospace list-apps`] CLI command to get IDs of running applications * `mdls -name kMDItemCFBundleIdentifier -r /Applications/App.app` @@ -608,7 +608,7 @@ Besides the <>, the process has access to the fol * `AEROSPACE_PREV_WORKSPACE` - the workspace user switched from For a more elaborate example on how to integrate with Sketchybar see -xref:goodness.adoc#show-aerospace-workspaces-in-sketchybar[] +xref:./goodies.adoc#show-aerospace-workspaces-in-sketchybar[] [#multiple-monitors] == Multiple monitors diff --git a/docs/util/header.adoc b/docs/util/header.adoc index 089c7379..029a8c40 100644 --- a/docs/util/header.adoc +++ b/docs/util/header.adoc @@ -7,5 +7,5 @@ image:assets/icon.png[300,300,float="right"] * xref:guide.adoc[AeroSpace Guide] * xref:commands.adoc[AeroSpace Commands] -* xref:goodness.adoc[AeroSpace Goodness] +* xref:goodies.adoc[AeroSpace Goodies] ====