├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── assets └── logo.png └── src ├── app.rs ├── event.rs ├── handler.rs ├── help.rs ├── lib.rs ├── main.rs ├── notification.rs ├── tui.rs ├── ui.rs └── xrandr.rs /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/assets/logo.png -------------------------------------------------------------------------------- /src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/src/app.rs -------------------------------------------------------------------------------- /src/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/src/event.rs -------------------------------------------------------------------------------- /src/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/src/handler.rs -------------------------------------------------------------------------------- /src/help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/src/help.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/notification.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/src/notification.rs -------------------------------------------------------------------------------- /src/tui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/src/tui.rs -------------------------------------------------------------------------------- /src/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/src/ui.rs -------------------------------------------------------------------------------- /src/xrandr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tuix/HEAD/src/xrandr.rs --------------------------------------------------------------------------------