https://github.com/byson94/xfsrtray
A floating and customizable system tray for linux
https://github.com/byson94/xfsrtray
archlinux linux rust system tray
Last synced: 4 months ago
JSON representation
A floating and customizable system tray for linux
- Host: GitHub
- URL: https://github.com/byson94/xfsrtray
- Owner: Byson94
- License: gpl-3.0
- Created: 2025-07-05T11:33:40.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-07-05T12:30:16.000Z (4 months ago)
- Last Synced: 2025-07-05T12:37:10.078Z (4 months ago)
- Topics: archlinux, linux, rust, system, tray
- Language: Rust
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xfsrtray



[](https://aur.archlinux.org/packages/xfsrtray)
A floating and customizable system tray for linux.
## Installing
To install **xfsrtray** on arch or any arch based system, you can use an aur wrapper like yay:
```bash
# Install the package (compile & install)
yay -S xfsrtray
# Install the bin (fastest)
yay -S xfsrtray-bin
# Install the git (latest dev version)
yay -S xfsrtray-git
```
If you are on any other system other than arch, you can build the binary by following the steps mentioned under the [building using cargo section](#building-using-cargo).
## Building Methods
You can build the package by using any of the following methods:
1. Using cargo to build the binary
2. Using `makepkg` to build the arch package for arch users
## Building using cargo
To build the package using cargo (rust), run the following command in the root of this project.
```bash
# Make sure that you have cargo installed.
cargo build --release --locked
# This will compile and create the binary at `/target/release/xfsrtray`
```
## Building using `makepkg` (arch only)
You can run the following command at the root of this project to create the local arch package.
```bash
makepkg # Creates the .pkg.tar.zst file
```
or you can running this command to build and install the package:
```bash
makepkg -si
```