Skip to content

Commit a3b0099

Browse files
committed
Move repository links to omacom
1 parent a0c7386 commit a3b0099

9 files changed

Lines changed: 22 additions & 22 deletions

File tree

.github/workflows/aur.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ jobs:
4242
pkgrel=1
4343
pkgdesc='Desktop theming application - extract colors from wallpapers and apply cohesive themes'
4444
arch=('x86_64' 'aarch64')
45-
url='https://github.com/omacom-io/aether'
45+
url='https://github.com/omacom/aether'
4646
license=('MIT')
4747
depends=('webkit2gtk-4.1' 'gtk3')
48-
source=("aether-${pkgver}.tar.gz::https://github.com/omacom-io/aether/archive/refs/tags/v${pkgver}.tar.gz")
49-
source_x86_64=("aether-linux-amd64-${pkgver}::https://github.com/omacom-io/aether/releases/download/v${pkgver}/aether-linux-amd64")
50-
source_aarch64=("aether-linux-arm64-${pkgver}::https://github.com/omacom-io/aether/releases/download/v${pkgver}/aether-linux-arm64")
48+
source=("aether-${pkgver}.tar.gz::https://github.com/omacom/aether/archive/refs/tags/v${pkgver}.tar.gz")
49+
source_x86_64=("aether-linux-amd64-${pkgver}::https://github.com/omacom/aether/releases/download/v${pkgver}/aether-linux-amd64")
50+
source_aarch64=("aether-linux-arm64-${pkgver}::https://github.com/omacom/aether/releases/download/v${pkgver}/aether-linux-arm64")
5151
sha256sums=('SOURCE_SHA256_PLACEHOLDER')
5252
sha256sums_x86_64=('AMD64_SHA256_PLACEHOLDER')
5353
sha256sums_aarch64=('ARM64_SHA256_PLACEHOLDER')

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
Description: Desktop theming application
8686
Extract colors from wallpapers and apply cohesive themes across your
8787
desktop.
88-
Homepage: https://github.com/omacom-io/aether
88+
Homepage: https://github.com/omacom/aether
8989
CTRL
9090
sed -i 's/^ //' "${PKG_DIR}/DEBIAN/control"
9191
sed -i "s/PKGVER/${PKG_VERSION}/" "${PKG_DIR}/DEBIAN/control"
@@ -189,36 +189,36 @@ jobs:
189189
190190
### Debian / Ubuntu (x86_64)
191191
```bash
192-
wget https://github.com/omacom-io/aether/releases/download/${{ github.ref_name }}/aether_${{ steps.archive.outputs.pkgver }}_amd64.deb
192+
wget https://github.com/omacom/aether/releases/download/${{ github.ref_name }}/aether_${{ steps.archive.outputs.pkgver }}_amd64.deb
193193
sudo dpkg -i aether_${{ steps.archive.outputs.pkgver }}_amd64.deb
194194
sudo apt-get install -f
195195
```
196196
197197
### Debian / Ubuntu (aarch64)
198198
```bash
199-
wget https://github.com/omacom-io/aether/releases/download/${{ github.ref_name }}/aether_${{ steps.archive.outputs.pkgver }}_arm64.deb
199+
wget https://github.com/omacom/aether/releases/download/${{ github.ref_name }}/aether_${{ steps.archive.outputs.pkgver }}_arm64.deb
200200
sudo dpkg -i aether_${{ steps.archive.outputs.pkgver }}_arm64.deb
201201
sudo apt-get install -f
202202
```
203203
204204
### Pre-built Binary (x86_64)
205205
```bash
206-
wget https://github.com/omacom-io/aether/releases/download/${{ github.ref_name }}/aether-linux-amd64
206+
wget https://github.com/omacom/aether/releases/download/${{ github.ref_name }}/aether-linux-amd64
207207
chmod +x aether-linux-amd64
208208
sudo mv aether-linux-amd64 /usr/local/bin/aether
209209
```
210210
211211
### Pre-built Binary (aarch64)
212212
```bash
213-
wget https://github.com/omacom-io/aether/releases/download/${{ github.ref_name }}/aether-linux-arm64
213+
wget https://github.com/omacom/aether/releases/download/${{ github.ref_name }}/aether-linux-arm64
214214
chmod +x aether-linux-arm64
215215
sudo mv aether-linux-arm64 /usr/local/bin/aether
216216
```
217217
218218
### Build from Source
219219
Requires Go 1.23+, Node.js 22+, and [Wails](https://wails.io/docs/gettingstarted/installation).
220220
```bash
221-
git clone https://github.com/omacom-io/aether.git
221+
git clone https://github.com/omacom/aether.git
222222
cd aether
223223
make build
224224
```

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ yay -S aether
5353

5454
### Install (Debian / Ubuntu)
5555

56-
Download the `.deb` from the [latest release](https://github.com/omacom-io/aether/releases/latest):
56+
Download the `.deb` from the [latest release](https://github.com/omacom/aether/releases/latest):
5757

5858
```bash
5959
sudo dpkg -i aether_*.deb
@@ -69,7 +69,7 @@ sudo pacman -S go webkit2gtk
6969
# Debian/Ubuntu
7070
sudo apt install golang libgtk-3-dev libwebkit2gtk-4.1-dev
7171

72-
git clone https://github.com/omacom-io/aether.git
72+
git clone https://github.com/omacom/aether.git
7373
cd aether && make build
7474
```
7575

@@ -93,7 +93,7 @@ See `aether --help` for all options.
9393
## Local Development
9494

9595
```bash
96-
git clone https://github.com/omacom-io/aether.git
96+
git clone https://github.com/omacom/aether.git
9797
cd aether
9898

9999
# Install frontend dependencies

docs/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ paru -S aether
1616

1717
## Debian / Ubuntu
1818

19-
Download the `.deb` package from the [latest release](https://github.com/omacom-io/aether/releases/latest):
19+
Download the `.deb` package from the [latest release](https://github.com/omacom/aether/releases/latest):
2020

2121
```bash
2222
sudo dpkg -i aether_*.deb
@@ -37,7 +37,7 @@ The `.deb` package includes the `aether` binary and pulls in required runtime de
3737
### Build
3838

3939
```bash
40-
git clone https://github.com/omacom-io/aether.git
40+
git clone https://github.com/omacom/aether.git
4141
cd aether && make build
4242
```
4343

@@ -72,7 +72,7 @@ sudo apt install golang libgtk-3-dev libwebkit2gtk-4.1-dev nodejs npm pkg-config
7272
### Build
7373

7474
```bash
75-
git clone https://github.com/omacom-io/aether.git
75+
git clone https://github.com/omacom/aether.git
7676
cd aether && make build
7777
```
7878

frontend/src/lib/components/layout/AboutView.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
const links: Link[] = [
1515
{
1616
label: 'GitHub',
17-
url: 'https://github.com/omacom-io/aether',
17+
url: 'https://github.com/omacom/aether',
1818
description: 'Source code, issues, releases',
1919
icon: 'M12 .5C5.65.5.5 5.65.5 12c0 5.08 3.29 9.39 7.86 10.91.58.11.79-.25.79-.56v-2c-3.2.7-3.87-1.36-3.87-1.36-.52-1.32-1.27-1.67-1.27-1.67-1.04-.71.08-.7.08-.7 1.15.08 1.76 1.18 1.76 1.18 1.02 1.75 2.68 1.24 3.34.95.1-.74.4-1.24.72-1.53-2.55-.29-5.24-1.28-5.24-5.69 0-1.26.45-2.29 1.18-3.1-.12-.29-.51-1.46.11-3.05 0 0 .97-.31 3.18 1.18a11.06 11.06 0 0 1 5.78 0c2.21-1.49 3.18-1.18 3.18-1.18.62 1.59.23 2.76.11 3.05.74.81 1.18 1.84 1.18 3.1 0 4.42-2.69 5.39-5.25 5.68.41.36.78 1.07.78 2.16v3.2c0 .31.21.68.8.56C20.21 21.39 23.5 17.07 23.5 12 23.5 5.65 18.35.5 12 .5Z',
2020
},

install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Installs Aether from the AUR
55
#
66
# Usage:
7-
# curl -fsSL https://raw.githubusercontent.com/omacom-io/aether/main/install.sh | bash
7+
# curl -fsSL https://raw.githubusercontent.com/omacom/aether/main/install.sh | bash
88
#
99

1010
set -euo pipefail
@@ -155,7 +155,7 @@ print_post_install() {
155155
echo -e " Search for 'Aether' in your application launcher."
156156
echo ""
157157
echo -e "${BOLD}Documentation:${NC}"
158-
echo -e " ${CYAN}https://github.com/omacom-io/aether${NC}"
158+
echo -e " ${CYAN}https://github.com/omacom/aether${NC}"
159159
echo ""
160160
}
161161

internal/update/release.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"time"
1212
)
1313

14-
const latestReleaseURL = "https://api.github.com/repos/omacom-io/aether/releases/latest"
14+
const latestReleaseURL = "https://api.github.com/repos/omacom/aether/releases/latest"
1515

1616
// Release describes the newest published Aether release and its relation to
1717
// the version currently running.

internal/update/release_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func TestCheck(t *testing.T) {
4141
}
4242
_, _ = w.Write([]byte(`{
4343
"tag_name": "v3.1.0",
44-
"html_url": "https://github.com/omacom-io/aether/releases/tag/v3.1.0",
44+
"html_url": "https://github.com/omacom/aether/releases/tag/v3.1.0",
4545
"assets": [{"name": "aether-linux-amd64", "browser_download_url": "https://example.com/aether"}]
4646
}`))
4747
}))

templates/neovim.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
return {
22
{
3-
"omacom-io/aether.nvim",
3+
"omacom/aether.nvim",
44
branch = "v3",
55
name = "aether",
66
priority = 1000,

0 commit comments

Comments
 (0)