summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--README.md18
-rw-r--r--atuin.nix2
-rw-r--r--docker-compose.yml2
-rw-r--r--docs/docs/advanced-install.md8
-rw-r--r--docs/docs/self-hosting/k8s.md2
-rw-r--r--docs/docusaurus.config.js8
-rw-r--r--docs/zh-CN/k8s.md2
-rwxr-xr-xinstall.sh15
-rw-r--r--k8s/atuin.yaml2
10 files changed, 29 insertions, 32 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e8ca7f48..1d55c34f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -15,7 +15,7 @@ authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
rust-version = "1.59"
license = "MIT"
homepage = "https://atuin.sh"
-repository = "https://github.com/ellie/atuin"
+repository = "https://github.com/atuinsh/atuin"
readme = "README.md"
[workspace.dependencies]
diff --git a/README.md b/README.md
index 009b8e2f..c010f34a 100644
--- a/README.md
+++ b/README.md
@@ -9,10 +9,10 @@
<hr/>
<p align="center">
- <a href="https://github.com/ellie/atuin/actions?query=workflow%3ARust"><img src="https://img.shields.io/github/actions/workflow/status/ellie/atuin/rust.yml?style=flat-square" /></a>
+ <a href="https://github.com/atuinsh/atuin/actions?query=workflow%3ARust"><img src="https://img.shields.io/github/actions/workflow/status/atuinsh/atuin/rust.yml?style=flat-square" /></a>
<a href="https://crates.io/crates/atuin"><img src="https://img.shields.io/crates/v/atuin.svg?style=flat-square" /></a>
<a href="https://crates.io/crates/atuin"><img src="https://img.shields.io/crates/d/atuin.svg?style=flat-square" /></a>
- <a href="https://github.com/ellie/atuin/blob/main/LICENSE"><img src="https://img.shields.io/crates/l/atuin.svg?style=flat-square" /></a>
+ <a href="https://github.com/atuinsh/atuin/blob/main/LICENSE"><img src="https://img.shields.io/crates/l/atuin.svg?style=flat-square" /></a>
<a href="https://discord.gg/Fq8bJSKPHh"><img src="https://img.shields.io/discord/954121165239115808" /></a>
<a rel="me" href="https://hachyderm.io/@atuin"><img src="https://img.shields.io/mastodon/follow/109944632283122560?domain=https%3A%2F%2Fhachyderm.io&style=social"/></a>
<a href="https://twitter.com/atuinsh"><img src="https://img.shields.io/twitter/follow/atuinsh?style=social" /></a>
@@ -98,7 +98,7 @@ This will sign you up for the default sync server, hosted by me. Everything is e
Read more below for offline-only usage, or for hosting your own server.
```
-bash <(curl https://raw.githubusercontent.com/ellie/atuin/main/install.sh)
+bash <(curl https://raw.githubusercontent.com/atuinsh/atuin/main/install.sh)
atuin register -u <USERNAME> -e <EMAIL>
atuin import auto
@@ -125,7 +125,7 @@ The response includes the URL to your graph. Feel free to share and/or embed thi
## Offline only (no sync)
```
-bash <(curl https://raw.githubusercontent.com/ellie/atuin/main/install.sh)
+bash <(curl https://raw.githubusercontent.com/atuinsh/atuin/main/install.sh)
atuin import auto
```
@@ -144,7 +144,7 @@ system package manager where possible (pacman, homebrew, etc etc).
```
# do not run this as root, root will be asked for if required
-bash <(curl https://raw.githubusercontent.com/ellie/atuin/main/install.sh)
+bash <(curl https://raw.githubusercontent.com/atuinsh/atuin/main/install.sh)
```
And then follow [the shell setup](#shell-plugin)
@@ -183,7 +183,7 @@ And then follow [the shell setup](#shell-plugin)
This repository is a flake, and can be installed using `nix profile`:
```
-nix profile install "github:ellie/atuin"
+nix profile install "github:atuinsh/atuin"
```
Atuin is also available in [nixpkgs](https://github.com/NixOS/nixpkgs):
@@ -216,7 +216,7 @@ And then follow [the shell setup](#shell-plugin)
### From source
```
-git clone https://github.com/ellie/atuin.git
+git clone https://github.com/atuinsh/atuin.git
cd atuin/atuin
cargo install --path .
```
@@ -237,13 +237,13 @@ echo 'eval "$(atuin init zsh)"' >> ~/.zshrc
#### Zinit
```sh
-zinit load ellie/atuin
+zinit load atuinsh/atuin
```
#### Antigen
```sh
-antigen bundle ellie/atuin@main
+antigen bundle atuinsh/atuin@main
```
### bash
diff --git a/atuin.nix b/atuin.nix
index 7a116b86..795e927d 100644
--- a/atuin.nix
+++ b/atuin.nix
@@ -43,7 +43,7 @@ rustPlatform.buildRustPackage {
meta = with lib; {
description = "Replacement for a shell history which records additional commands context with optional encrypted synchronization between machines";
- homepage = "https://github.com/ellie/atuin";
+ homepage = "https://github.com/atuinsh/atuin";
license = licenses.mit;
};
}
diff --git a/docker-compose.yml b/docker-compose.yml
index 07db484f..8cedac5d 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -2,7 +2,7 @@ version: '3.5'
services:
atuin:
restart: always
- image: ghcr.io/ellie/atuin:main
+ image: ghcr.io/atuinsh/atuin:main
command: server start
volumes:
- "./config:/config"
diff --git a/docs/docs/advanced-install.md b/docs/docs/advanced-install.md
index f9ff719f..cf9bbadd 100644
--- a/docs/docs/advanced-install.md
+++ b/docs/docs/advanced-install.md
@@ -46,7 +46,7 @@ And then follow [the shell setup](#shell-plugin)
This repository is a flake, and can be installed using `nix profile`:
```
-nix profile install "github:ellie/atuin"
+nix profile install "github:atuinsh/atuin"
```
Atuin is also available in [nixpkgs](https://github.com/NixOS/nixpkgs):
@@ -82,7 +82,7 @@ Note: Atuin builds on the latest stable version of Rust, and we make no
promises regarding older versions. We recommend using rustup.
```
-git clone https://github.com/ellie/atuin.git
+git clone https://github.com/atuinsh/atuin.git
cd atuin/atuin
cargo install --path .
```
@@ -101,13 +101,13 @@ echo 'eval "$(atuin init zsh)"' >> ~/.zshrc
#### Zinit
```sh
-zinit load ellie/atuin
+zinit load atuinsh/atuin
```
#### Antigen
```sh
-antigen bundle ellie/atuin@main
+antigen bundle atuinsh/atuin@main
```
### bash
diff --git a/docs/docs/self-hosting/k8s.md b/docs/docs/self-hosting/k8s.md
index 79710312..5ba58b6b 100644
--- a/docs/docs/self-hosting/k8s.md
+++ b/docs/docs/self-hosting/k8s.md
@@ -55,7 +55,7 @@ spec:
value: "8888"
- name: ATUIN_OPEN_REGISTRATION
value: "true"
- image: ghcr.io/ellie/atuin:main
+ image: ghcr.io/atuinsh/atuin:main
name: atuin
ports:
- containerPort: 8888
diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js
index a33d8f63..8c01ee21 100644
--- a/docs/docusaurus.config.js
+++ b/docs/docusaurus.config.js
@@ -18,7 +18,7 @@ const config = {
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
- organizationName: 'ellie', // Usually your GitHub org/user name.
+ organizationName: 'atuinsh', // Usually your GitHub org/user name.
projectName: 'atuin', // Usually your repo name.
onBrokenLinks: 'warn',
@@ -45,14 +45,14 @@ const config = {
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
- 'https://github.com/ellie/atuin/tree/main/docs/',
+ 'https://github.com/atuinsh/atuin/tree/main/docs/',
},
blog: {
showReadingTime: true,
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
- 'https://github.com/ellie/atuin/tree/main/docs/',
+ 'https://github.com/atuinsh/atuin/tree/main/docs/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
@@ -102,7 +102,7 @@ const config = {
},
{
label: 'GitHub',
- href: 'https://github.com/ellie/atuin',
+ href: 'https://github.com/atuinsh/atuin',
},
{
label: 'Twitter',
diff --git a/docs/zh-CN/k8s.md b/docs/zh-CN/k8s.md
index 0d9c56e5..d512a4b0 100644
--- a/docs/zh-CN/k8s.md
+++ b/docs/zh-CN/k8s.md
@@ -56,7 +56,7 @@ spec:
value: "8888"
- name: ATUIN_OPEN_REGISTRATION
value: "true"
- image: ghcr.io/ellie/atuin:main
+ image: ghcr.io/atuinsh/atuin:main
name: atuin
ports:
- containerPort: 8888
diff --git a/install.sh b/install.sh
index 0d306464..2f854061 100755
--- a/install.sh
+++ b/install.sh
@@ -14,7 +14,7 @@ cat << EOF
Magical shell history
Atuin setup
-https://github.com/ellie/atuin
+https://github.com/atuinsh/atuin
Please file an issue if you encounter any problems!
@@ -30,7 +30,7 @@ elif ! command -v sed &> /dev/null; then
exit
fi
-LATEST_RELEASE=$(curl -L -s -H 'Accept: application/json' https://github.com/ellie/atuin/releases/latest)
+LATEST_RELEASE=$(curl -L -s -H 'Accept: application/json' https://github.com/atuinsh/atuin/releases/latest)
# Allow sed; sometimes it's more readable than ${variable//search/replace}
# shellcheck disable=SC2001
LATEST_VERSION=$(echo "$LATEST_RELEASE" | sed -e 's/.*"tag_name":"\([^"]*\)".*/\1/')
@@ -66,7 +66,7 @@ __atuin_install_arch(){
__atuin_install_ubuntu(){
echo "Ubuntu detected"
# TODO: select correct AARCH too
- ARTIFACT_URL="https://github.com/ellie/atuin/releases/download/$LATEST_VERSION/atuin_${LATEST_VERSION//v/}_amd64.deb"
+ ARTIFACT_URL="https://github.com/atuinsh/atuin/releases/download/$LATEST_VERSION/atuin_${LATEST_VERSION//v/}_amd64.deb"
TEMP_DEB="$(mktemp)".deb &&
curl -Lo "$TEMP_DEB" "$ARTIFACT_URL"
@@ -149,7 +149,7 @@ __atuin_install_cargo(){
__atuin_install_unsupported(){
echo "Unknown or unsupported OS"
- echo "Please check the README at https://github.com/ellie/atuin for manual install instructions"
+ echo "Please check the README at https://github.com/atuinsh/atuin for manual install instructions"
echo "If you have any problems, please open an issue!"
while true; do
@@ -202,11 +202,8 @@ Thanks for installing Atuin! I really hope you like it.
If you have any issues, please open an issue on GitHub or visit our Discord (https://discord.gg/dPhv2B3x)!
-Otherwise, Atuin is a hobby project - if you find it valuable, you can help us out!
+If you love Atuin, please give us a star on GitHub! It really helps ⭐️ https://github.com/atuinsh/atuin
-- ⭐️ Give us a star on GitHub (https://github.com/ellie/atuin)
-- 🚀 Contribute! We would love more regular contributors (https://github.com/ellie/atuin)
-- 🤑 Sponsor me! If you value the project + want to help keep the hosted sync server free (https://github.com/sponsors/ellie)
+Please run "atuin register" to get setup with sync, or "atuin login" if you already have an account
-~ Ellie 🐢💖
EOF
diff --git a/k8s/atuin.yaml b/k8s/atuin.yaml
index b4df0b21..b0ad6b7c 100644
--- a/k8s/atuin.yaml
+++ b/k8s/atuin.yaml
@@ -30,7 +30,7 @@ spec:
value: "8888"
- name: ATUIN_OPEN_REGISTRATION
value: "true"
- image: ghcr.io/ellie/atuin:main
+ image: ghcr.io/atuinsh/atuin:main
name: atuin
ports:
- containerPort: 8888