https://github.com/tuxdotrs/tpanel
My widgets for wayland
https://github.com/tuxdotrs/tpanel
ags astal dotfiles gtk4 hyprland linux linux-rice nix
Last synced: about 1 year ago
JSON representation
My widgets for wayland
- Host: GitHub
- URL: https://github.com/tuxdotrs/tpanel
- Owner: tuxdotrs
- License: mit
- Created: 2025-05-31T08:29:07.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-16T18:04:00.000Z (about 1 year ago)
- Last Synced: 2025-06-16T19:20:45.395Z (about 1 year ago)
- Topics: ags, astal, dotfiles, gtk4, hyprland, linux, linux-rice, nix
- Language: TypeScript
- Homepage:
- Size: 3.5 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
tux's panel

## Installation
Quick
```nix
# If you want to quickly test out tpanel
nix run github:tuxdotrs/tpanel
```
Flake
```nix
# Add to your flake inputs
tpanel = {
url = "github:tuxdotrs/tpanel";
inputs.nixpkgs.follows = "nixpkgs";
};
# Add this in your nixos config
environment.systemPackages = [ inputs.tpanel.packages.${system}.default ];
# Add this in your HomeManager config
home.packages = [ inputs.tpanel.packages.${system}.default ];
```