├── .github └── workflows │ └── release.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── Tauri.toml ├── icons ├── 128x128.png ├── 128x128@2x.png ├── 32x32.png ├── Square107x107Logo.png ├── Square142x142Logo.png ├── Square150x150Logo.png ├── Square284x284Logo.png ├── Square30x30Logo.png ├── Square310x310Logo.png ├── Square44x44Logo.png ├── Square71x71Logo.png ├── Square89x89Logo.png ├── StoreLogo.png ├── app-icon.png ├── icon.icns ├── icon.ico └── icon.png ├── rustfmt.toml └── src ├── app.rs ├── config.rs ├── lib.rs ├── main.rs └── wootility.rs /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | target/ 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/README.md -------------------------------------------------------------------------------- /Tauri.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/Tauri.toml -------------------------------------------------------------------------------- /icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/128x128.png -------------------------------------------------------------------------------- /icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/128x128@2x.png -------------------------------------------------------------------------------- /icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/32x32.png -------------------------------------------------------------------------------- /icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/StoreLogo.png -------------------------------------------------------------------------------- /icons/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/app-icon.png -------------------------------------------------------------------------------- /icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/icon.icns -------------------------------------------------------------------------------- /icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/icon.ico -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/icons/icon.png -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/src/app.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/wootility.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShayBox/Wooting-Profile-Switcher/HEAD/src/wootility.rs --------------------------------------------------------------------------------