mirror of
https://github.com/ByteAtATime/raycast-linux.git
synced 2025-08-30 18:57:25 +00:00
feat: rename package
This commit is contained in:
parent
39ad9f6d83
commit
0ea85fb7ac
5 changed files with 12 additions and 12 deletions
4
.github/workflows/nightly.yml
vendored
4
.github/workflows/nightly.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: 'Publish Raycast Linux'
|
name: 'Publish Flare'
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
|
@ -87,7 +87,7 @@ jobs:
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
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
|
path: src-tauri/target/${{ steps.build_profile.outputs.profile }}/bundle/appimage/*.AppImage
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
compression-level: 0
|
compression-level: 0
|
||||||
|
|
10
README.md
10
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).
|
For more background on this project, I have a [post here](https://byteatatime.dev/posts/recreating-raycast).
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
**Disclaimer:** This is a hobby project and is **not** affiliated with, nor endorsed by, the official Raycast team.
|
**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:
|
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
|
### System Requirements
|
||||||
|
@ -56,7 +56,7 @@ The application requires `glibc` version **2.38**, which is installed by default
|
||||||
1. Create the `udev` rule file:
|
1. Create the `udev` rule file:
|
||||||
|
|
||||||
```bash
|
```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:
|
2. Add the following line to the file:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "raycast-linux",
|
"name": "flare",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"app": {
|
"app": {
|
||||||
"windows": [
|
"windows": [
|
||||||
{
|
{
|
||||||
"title": "raycast-linux",
|
"title": "Flare",
|
||||||
"visible": true,
|
"visible": true,
|
||||||
"decorations": false,
|
"decorations": false,
|
||||||
"alwaysOnTop": false,
|
"alwaysOnTop": false,
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "raycast-linux",
|
"productName": "Flare",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"identifier": "dev.byteatatime.raycast",
|
"identifier": "dev.byteatatime.flare",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "pnpm dev",
|
"beforeDevCommand": "pnpm dev",
|
||||||
"devUrl": "http://localhost:1420",
|
"devUrl": "http://localhost:1420",
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
"app": {
|
"app": {
|
||||||
"windows": [
|
"windows": [
|
||||||
{
|
{
|
||||||
"title": "raycast-linux",
|
"title": "Flare",
|
||||||
"visible": false,
|
"visible": false,
|
||||||
"decorations": false,
|
"decorations": false,
|
||||||
"alwaysOnTop": true,
|
"alwaysOnTop": true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue