https://github.com/saann3/power-menu
Power menu written in rust with dioxus
https://github.com/saann3/power-menu
Last synced: about 2 months ago
JSON representation
Power menu written in rust with dioxus
- Host: GitHub
- URL: https://github.com/saann3/power-menu
- Owner: SAANN3
- License: mit
- Created: 2024-12-27T20:23:08.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-02-09T16:31:22.000Z (3 months ago)
- Last Synced: 2025-02-09T17:31:10.279Z (3 months ago)
- Language: Rust
- Size: 5.56 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Power menu 

Power menu built in rust with dioxus!
## How to build
```bash
git clone https://github.com/SAANN3/power-menu.git
cd Power-menu
cargo build
```
Builded binary will be located in ```target/debug/power-menu```After that you can move binary anywhere
## Usage
Add it to autostart and then, when you need to launch it, click on the power icon in the system tray
## Styling
Open ```assets/main.css``` and edit the css class
```css
:root {
--global-color: aliceblue; // icons, text, borders, basically all
--global-bg-color: #white; // background color
}
```#### !! If styling doesn't applying, make sure that you have deleted 'assets' folder in place, where binary is located. !!
For example, to run app, you need to write
```bash
cargo run
```
But if you want to reset current stylings, you need to remove assets folder
```bash
rm -r target/debug/assets && cargo run
```