Power menu built in rust with dioxus!
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
Add it to autostart and then, when you need to launch it, click on the power icon in the system tray
Open assets/main.css
and edit the css class
: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
cargo run
But if you want to reset current stylings, you need to remove assets folder
rm -r target/debug/assets && cargo run