From 0ea85fb7acef7d9513aadf275eeed2c80e86ccdd Mon Sep 17 00:00:00 2001 From: ByteAtATime Date: Tue, 22 Jul 2025 09:43:30 -0700 Subject: [PATCH] feat: rename package --- .github/workflows/nightly.yml | 4 ++-- README.md | 10 +++++----- package.json | 2 +- src-tauri/tauri.conf.dev.json | 2 +- src-tauri/tauri.conf.json | 6 +++--- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 45432f6..1297439 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -1,4 +1,4 @@ -name: 'Publish Raycast Linux' +name: 'Publish Flare' on: schedule: @@ -87,7 +87,7 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v4 with: - name: raycast-linux${{ steps.build_profile.outputs.artifact_suffix }} + name: flare${{ steps.build_profile.outputs.artifact_suffix }} path: src-tauri/target/${{ steps.build_profile.outputs.profile }}/bundle/appimage/*.AppImage retention-days: 7 compression-level: 0 diff --git a/README.md b/README.md index 6b30f44..3a3bad0 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# Raycast for Linux +# Flare Launcher -An open-source, Raycast-inspired launcher for Linux. +An open-source, Raycast-compatible launcher for Linux. For more background on this project, I have a [post here](https://byteatatime.dev/posts/recreating-raycast). -![GIF of Raycast Linux, showing off its main features](https://raw.githubusercontent.com/ByteAtATime/raycast-linux/main/images/raycast-linux.gif) +![GIF of Flare, showing off its main features](https://raw.githubusercontent.com/ByteAtATime/raycast-linux/main/images/raycast-linux.gif) **Disclaimer:** This is a hobby project and is **not** affiliated with, nor endorsed by, the official Raycast team. @@ -44,7 +44,7 @@ This will open a long-running process in the background. To toggle the visibilit Depending on your environment, you may be able to bind the script to a hotkey. For example, on Hyprland: ``` -bind = ALT, Space, exec, /path/to/raycast-linux.AppImage +bind = ALT, Space, exec, /path/to/flare.AppImage ``` ### System Requirements @@ -56,7 +56,7 @@ The application requires `glibc` version **2.38**, which is installed by default 1. Create the `udev` rule file: ```bash - sudo nano /etc/udev/rules.d/99-raycast-linux.rules + sudo nano /etc/udev/rules.d/99-flare.rules ``` 2. Add the following line to the file: diff --git a/package.json b/package.json index 49410e3..50e41b2 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "raycast-linux", + "name": "flare", "version": "0.1.0", "description": "", "type": "module", diff --git a/src-tauri/tauri.conf.dev.json b/src-tauri/tauri.conf.dev.json index 2d693fe..aac233d 100644 --- a/src-tauri/tauri.conf.dev.json +++ b/src-tauri/tauri.conf.dev.json @@ -3,7 +3,7 @@ "app": { "windows": [ { - "title": "raycast-linux", + "title": "Flare", "visible": true, "decorations": false, "alwaysOnTop": false, diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 6ec7c6f..1577b9c 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,8 +1,8 @@ { "$schema": "https://schema.tauri.app/config/2", - "productName": "raycast-linux", + "productName": "Flare", "version": "0.1.0", - "identifier": "dev.byteatatime.raycast", + "identifier": "dev.byteatatime.flare", "build": { "beforeDevCommand": "pnpm dev", "devUrl": "http://localhost:1420", @@ -12,7 +12,7 @@ "app": { "windows": [ { - "title": "raycast-linux", + "title": "Flare", "visible": false, "decorations": false, "alwaysOnTop": true,