├── .direnv └── bin │ └── nix-direnv-reload ├── .envrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ ├── cargo-doc-check.yml │ ├── clippy-lint.yml │ ├── coverage.yml │ ├── publish.yml │ ├── release.yml │ └── test.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── Makefile ├── README.md ├── config.toml.example ├── contrib └── generate_icons.py ├── flake.lock ├── flake.nix ├── hyprland-autoname-workspaces.service ├── pull_request_template.md └── src ├── config └── mod.rs ├── main.rs ├── params └── mod.rs └── renamer ├── formatter.rs ├── icon.rs ├── macros.rs └── mod.rs /.direnv/bin/nix-direnv-reload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/.direnv/bin/nix-direnv-reload -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/.envrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [cyrinux, maximbaz] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/cargo-doc-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/.github/workflows/cargo-doc-check.yml -------------------------------------------------------------------------------- /.github/workflows/clippy-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/.github/workflows/clippy-lint.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | *.html 3 | .direnv 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/README.md -------------------------------------------------------------------------------- /config.toml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/config.toml.example -------------------------------------------------------------------------------- /contrib/generate_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/contrib/generate_icons.py -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/flake.nix -------------------------------------------------------------------------------- /hyprland-autoname-workspaces.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/hyprland-autoname-workspaces.service -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/src/config/mod.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/params/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/src/params/mod.rs -------------------------------------------------------------------------------- /src/renamer/formatter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/src/renamer/formatter.rs -------------------------------------------------------------------------------- /src/renamer/icon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/src/renamer/icon.rs -------------------------------------------------------------------------------- /src/renamer/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/src/renamer/macros.rs -------------------------------------------------------------------------------- /src/renamer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/hyprland-autoname-workspaces/HEAD/src/renamer/mod.rs --------------------------------------------------------------------------------