├── .envrc ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix └── src └── main.rs /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .direnv/ 2 | result 3 | /target 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | version = 3 4 | 5 | [[package]] 6 | name = "addr2line" 7 | version = "0.22.0" 8 | source = "registry+https://github.com/rust-lang/crates.io-index" 9 | checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" 10 | dependencies = [ 11 | "gimli", 12 | ] 13 | 14 | [[package]] 15 | name = "adler" 16 | version = "1.0.2" 17 | source = "registry+https://github.com/rust-lang/crates.io-index" 18 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 | 20 | [[package]] 21 | name = "aho-corasick" 22 | version = "1.1.3" 23 | source = "registry+https://github.com/rust-lang/crates.io-index" 24 | checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 25 | dependencies = [ 26 | "memchr", 27 | ] 28 | 29 | [[package]] 30 | name = "anstream" 31 | version = "0.6.14" 32 | source = "registry+https://github.com/rust-lang/crates.io-index" 33 | checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 34 | dependencies = [ 35 | "anstyle", 36 | "anstyle-parse", 37 | "anstyle-query", 38 | "anstyle-wincon", 39 | "colorchoice", 40 | "is_terminal_polyfill", 41 | "utf8parse", 42 | ] 43 | 44 | [[package]] 45 | name = "anstyle" 46 | version = "1.0.7" 47 | source = "registry+https://github.com/rust-lang/crates.io-index" 48 | checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 49 | 50 | [[package]] 51 | name = "anstyle-parse" 52 | version = "0.2.4" 53 | source = "registry+https://github.com/rust-lang/crates.io-index" 54 | checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 55 | dependencies = [ 56 | "utf8parse", 57 | ] 58 | 59 | [[package]] 60 | name = "anstyle-query" 61 | version = "1.1.0" 62 | source = "registry+https://github.com/rust-lang/crates.io-index" 63 | checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391" 64 | dependencies = [ 65 | "windows-sys", 66 | ] 67 | 68 | [[package]] 69 | name = "anstyle-wincon" 70 | version = "3.0.3" 71 | source = "registry+https://github.com/rust-lang/crates.io-index" 72 | checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 73 | dependencies = [ 74 | "anstyle", 75 | "windows-sys", 76 | ] 77 | 78 | [[package]] 79 | name = "approx" 80 | version = "0.1.1" 81 | source = "registry+https://github.com/rust-lang/crates.io-index" 82 | checksum = "08abcc3b4e9339e33a3d0a5ed15d84a687350c05689d825e0f6655eef9e76a94" 83 | 84 | [[package]] 85 | name = "arc" 86 | version = "0.0.1" 87 | source = "registry+https://github.com/rust-lang/crates.io-index" 88 | checksum = "4543528550ff5d3fa676742778c61387b2b6db24ab72628ff951a5b1b0f470fe" 89 | dependencies = [ 90 | "cocoa", 91 | "failure", 92 | "lazy_static", 93 | "objc", 94 | "palette", 95 | ] 96 | 97 | [[package]] 98 | name = "autocfg" 99 | version = "0.1.8" 100 | source = "registry+https://github.com/rust-lang/crates.io-index" 101 | checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78" 102 | dependencies = [ 103 | "autocfg 1.3.0", 104 | ] 105 | 106 | [[package]] 107 | name = "autocfg" 108 | version = "1.3.0" 109 | source = "registry+https://github.com/rust-lang/crates.io-index" 110 | checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 111 | 112 | [[package]] 113 | name = "backtrace" 114 | version = "0.3.73" 115 | source = "registry+https://github.com/rust-lang/crates.io-index" 116 | checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" 117 | dependencies = [ 118 | "addr2line", 119 | "cc", 120 | "cfg-if", 121 | "libc", 122 | "miniz_oxide", 123 | "object", 124 | "rustc-demangle", 125 | ] 126 | 127 | [[package]] 128 | name = "bitflags" 129 | version = "1.3.2" 130 | source = "registry+https://github.com/rust-lang/crates.io-index" 131 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 132 | 133 | [[package]] 134 | name = "bitflags" 135 | version = "2.6.0" 136 | source = "registry+https://github.com/rust-lang/crates.io-index" 137 | checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 138 | 139 | [[package]] 140 | name = "block" 141 | version = "0.1.6" 142 | source = "registry+https://github.com/rust-lang/crates.io-index" 143 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 144 | 145 | [[package]] 146 | name = "cc" 147 | version = "1.0.101" 148 | source = "registry+https://github.com/rust-lang/crates.io-index" 149 | checksum = "ac367972e516d45567c7eafc73d24e1c193dcf200a8d94e9db7b3d38b349572d" 150 | 151 | [[package]] 152 | name = "cfg-if" 153 | version = "1.0.0" 154 | source = "registry+https://github.com/rust-lang/crates.io-index" 155 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 156 | 157 | [[package]] 158 | name = "cfg_aliases" 159 | version = "0.1.1" 160 | source = "registry+https://github.com/rust-lang/crates.io-index" 161 | checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 162 | 163 | [[package]] 164 | name = "cloudabi" 165 | version = "0.0.3" 166 | source = "registry+https://github.com/rust-lang/crates.io-index" 167 | checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" 168 | dependencies = [ 169 | "bitflags 1.3.2", 170 | ] 171 | 172 | [[package]] 173 | name = "cocoa" 174 | version = "0.15.0" 175 | source = "registry+https://github.com/rust-lang/crates.io-index" 176 | checksum = "7b44bd25bd275e9d74a5dff8ca55f2fb66c9ad5e12170d58697701df21a56e0e" 177 | dependencies = [ 178 | "bitflags 1.3.2", 179 | "block", 180 | "core-graphics", 181 | "libc", 182 | "objc", 183 | ] 184 | 185 | [[package]] 186 | name = "colorchoice" 187 | version = "1.0.1" 188 | source = "registry+https://github.com/rust-lang/crates.io-index" 189 | checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" 190 | 191 | [[package]] 192 | name = "core-foundation" 193 | version = "0.6.4" 194 | source = "registry+https://github.com/rust-lang/crates.io-index" 195 | checksum = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d" 196 | dependencies = [ 197 | "core-foundation-sys", 198 | "libc", 199 | ] 200 | 201 | [[package]] 202 | name = "core-foundation-sys" 203 | version = "0.6.2" 204 | source = "registry+https://github.com/rust-lang/crates.io-index" 205 | checksum = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b" 206 | 207 | [[package]] 208 | name = "core-graphics" 209 | version = "0.14.0" 210 | source = "registry+https://github.com/rust-lang/crates.io-index" 211 | checksum = "e54c4ab33705fa1fc8af375bb7929d68e1c1546c1ecef408966d8c3e49a1d84a" 212 | dependencies = [ 213 | "bitflags 1.3.2", 214 | "core-foundation", 215 | "foreign-types", 216 | "libc", 217 | ] 218 | 219 | [[package]] 220 | name = "ctrlc" 221 | version = "3.4.4" 222 | source = "registry+https://github.com/rust-lang/crates.io-index" 223 | checksum = "672465ae37dc1bc6380a6547a8883d5dd397b0f1faaad4f265726cc7042a5345" 224 | dependencies = [ 225 | "nix", 226 | "windows-sys", 227 | ] 228 | 229 | [[package]] 230 | name = "dlib" 231 | version = "0.5.2" 232 | source = "registry+https://github.com/rust-lang/crates.io-index" 233 | checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 234 | dependencies = [ 235 | "libloading", 236 | ] 237 | 238 | [[package]] 239 | name = "downcast-rs" 240 | version = "1.2.1" 241 | source = "registry+https://github.com/rust-lang/crates.io-index" 242 | checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 243 | 244 | [[package]] 245 | name = "env_filter" 246 | version = "0.1.0" 247 | source = "registry+https://github.com/rust-lang/crates.io-index" 248 | checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" 249 | dependencies = [ 250 | "log", 251 | "regex", 252 | ] 253 | 254 | [[package]] 255 | name = "env_logger" 256 | version = "0.11.3" 257 | source = "registry+https://github.com/rust-lang/crates.io-index" 258 | checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9" 259 | dependencies = [ 260 | "anstream", 261 | "anstyle", 262 | "env_filter", 263 | "humantime", 264 | "log", 265 | ] 266 | 267 | [[package]] 268 | name = "errno" 269 | version = "0.3.9" 270 | source = "registry+https://github.com/rust-lang/crates.io-index" 271 | checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 272 | dependencies = [ 273 | "libc", 274 | "windows-sys", 275 | ] 276 | 277 | [[package]] 278 | name = "failure" 279 | version = "0.1.8" 280 | source = "registry+https://github.com/rust-lang/crates.io-index" 281 | checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" 282 | dependencies = [ 283 | "backtrace", 284 | "failure_derive", 285 | ] 286 | 287 | [[package]] 288 | name = "failure_derive" 289 | version = "0.1.8" 290 | source = "registry+https://github.com/rust-lang/crates.io-index" 291 | checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" 292 | dependencies = [ 293 | "proc-macro2", 294 | "quote", 295 | "syn", 296 | "synstructure", 297 | ] 298 | 299 | [[package]] 300 | name = "foreign-types" 301 | version = "0.3.2" 302 | source = "registry+https://github.com/rust-lang/crates.io-index" 303 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 304 | dependencies = [ 305 | "foreign-types-shared", 306 | ] 307 | 308 | [[package]] 309 | name = "foreign-types-shared" 310 | version = "0.1.1" 311 | source = "registry+https://github.com/rust-lang/crates.io-index" 312 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 313 | 314 | [[package]] 315 | name = "fuchsia-cprng" 316 | version = "0.1.1" 317 | source = "registry+https://github.com/rust-lang/crates.io-index" 318 | checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 319 | 320 | [[package]] 321 | name = "gimli" 322 | version = "0.29.0" 323 | source = "registry+https://github.com/rust-lang/crates.io-index" 324 | checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" 325 | 326 | [[package]] 327 | name = "humantime" 328 | version = "2.1.0" 329 | source = "registry+https://github.com/rust-lang/crates.io-index" 330 | checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 331 | 332 | [[package]] 333 | name = "is_terminal_polyfill" 334 | version = "1.70.0" 335 | source = "registry+https://github.com/rust-lang/crates.io-index" 336 | checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 337 | 338 | [[package]] 339 | name = "lazy_static" 340 | version = "1.5.0" 341 | source = "registry+https://github.com/rust-lang/crates.io-index" 342 | checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 343 | 344 | [[package]] 345 | name = "libc" 346 | version = "0.2.155" 347 | source = "registry+https://github.com/rust-lang/crates.io-index" 348 | checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 349 | 350 | [[package]] 351 | name = "libloading" 352 | version = "0.8.4" 353 | source = "registry+https://github.com/rust-lang/crates.io-index" 354 | checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d" 355 | dependencies = [ 356 | "cfg-if", 357 | "windows-targets", 358 | ] 359 | 360 | [[package]] 361 | name = "linux-raw-sys" 362 | version = "0.4.14" 363 | source = "registry+https://github.com/rust-lang/crates.io-index" 364 | checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 365 | 366 | [[package]] 367 | name = "log" 368 | version = "0.4.21" 369 | source = "registry+https://github.com/rust-lang/crates.io-index" 370 | checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 371 | 372 | [[package]] 373 | name = "malloc_buf" 374 | version = "0.0.6" 375 | source = "registry+https://github.com/rust-lang/crates.io-index" 376 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 377 | dependencies = [ 378 | "libc", 379 | ] 380 | 381 | [[package]] 382 | name = "memchr" 383 | version = "2.7.4" 384 | source = "registry+https://github.com/rust-lang/crates.io-index" 385 | checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 386 | 387 | [[package]] 388 | name = "miniz_oxide" 389 | version = "0.7.4" 390 | source = "registry+https://github.com/rust-lang/crates.io-index" 391 | checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 392 | dependencies = [ 393 | "adler", 394 | ] 395 | 396 | [[package]] 397 | name = "nix" 398 | version = "0.28.0" 399 | source = "registry+https://github.com/rust-lang/crates.io-index" 400 | checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 401 | dependencies = [ 402 | "bitflags 2.6.0", 403 | "cfg-if", 404 | "cfg_aliases", 405 | "libc", 406 | ] 407 | 408 | [[package]] 409 | name = "num-traits" 410 | version = "0.2.19" 411 | source = "registry+https://github.com/rust-lang/crates.io-index" 412 | checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 413 | dependencies = [ 414 | "autocfg 1.3.0", 415 | ] 416 | 417 | [[package]] 418 | name = "objc" 419 | version = "0.2.7" 420 | source = "registry+https://github.com/rust-lang/crates.io-index" 421 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 422 | dependencies = [ 423 | "malloc_buf", 424 | ] 425 | 426 | [[package]] 427 | name = "object" 428 | version = "0.36.0" 429 | source = "registry+https://github.com/rust-lang/crates.io-index" 430 | checksum = "576dfe1fc8f9df304abb159d767a29d0476f7750fbf8aa7ad07816004a207434" 431 | dependencies = [ 432 | "memchr", 433 | ] 434 | 435 | [[package]] 436 | name = "palette" 437 | version = "0.3.0" 438 | source = "registry+https://github.com/rust-lang/crates.io-index" 439 | checksum = "c0514191b8ea7d7ee7e8982067929a6f0139d93584f82562d5e5e0e6ac738950" 440 | dependencies = [ 441 | "approx", 442 | "num-traits", 443 | "phf", 444 | "phf_codegen", 445 | ] 446 | 447 | [[package]] 448 | name = "phf" 449 | version = "0.7.24" 450 | source = "registry+https://github.com/rust-lang/crates.io-index" 451 | checksum = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18" 452 | dependencies = [ 453 | "phf_shared", 454 | ] 455 | 456 | [[package]] 457 | name = "phf_codegen" 458 | version = "0.7.24" 459 | source = "registry+https://github.com/rust-lang/crates.io-index" 460 | checksum = "b03e85129e324ad4166b06b2c7491ae27fe3ec353af72e72cd1654c7225d517e" 461 | dependencies = [ 462 | "phf_generator", 463 | "phf_shared", 464 | ] 465 | 466 | [[package]] 467 | name = "phf_generator" 468 | version = "0.7.24" 469 | source = "registry+https://github.com/rust-lang/crates.io-index" 470 | checksum = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662" 471 | dependencies = [ 472 | "phf_shared", 473 | "rand", 474 | ] 475 | 476 | [[package]] 477 | name = "phf_shared" 478 | version = "0.7.24" 479 | source = "registry+https://github.com/rust-lang/crates.io-index" 480 | checksum = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0" 481 | dependencies = [ 482 | "siphasher", 483 | ] 484 | 485 | [[package]] 486 | name = "pkg-config" 487 | version = "0.3.30" 488 | source = "registry+https://github.com/rust-lang/crates.io-index" 489 | checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 490 | 491 | [[package]] 492 | name = "proc-macro2" 493 | version = "1.0.86" 494 | source = "registry+https://github.com/rust-lang/crates.io-index" 495 | checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 496 | dependencies = [ 497 | "unicode-ident", 498 | ] 499 | 500 | [[package]] 501 | name = "quick-xml" 502 | version = "0.31.0" 503 | source = "registry+https://github.com/rust-lang/crates.io-index" 504 | checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 505 | dependencies = [ 506 | "memchr", 507 | ] 508 | 509 | [[package]] 510 | name = "quote" 511 | version = "1.0.36" 512 | source = "registry+https://github.com/rust-lang/crates.io-index" 513 | checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 514 | dependencies = [ 515 | "proc-macro2", 516 | ] 517 | 518 | [[package]] 519 | name = "rand" 520 | version = "0.6.5" 521 | source = "registry+https://github.com/rust-lang/crates.io-index" 522 | checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" 523 | dependencies = [ 524 | "autocfg 0.1.8", 525 | "libc", 526 | "rand_chacha", 527 | "rand_core 0.4.2", 528 | "rand_hc", 529 | "rand_isaac", 530 | "rand_jitter", 531 | "rand_os", 532 | "rand_pcg", 533 | "rand_xorshift", 534 | "winapi", 535 | ] 536 | 537 | [[package]] 538 | name = "rand_chacha" 539 | version = "0.1.1" 540 | source = "registry+https://github.com/rust-lang/crates.io-index" 541 | checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" 542 | dependencies = [ 543 | "autocfg 0.1.8", 544 | "rand_core 0.3.1", 545 | ] 546 | 547 | [[package]] 548 | name = "rand_core" 549 | version = "0.3.1" 550 | source = "registry+https://github.com/rust-lang/crates.io-index" 551 | checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 552 | dependencies = [ 553 | "rand_core 0.4.2", 554 | ] 555 | 556 | [[package]] 557 | name = "rand_core" 558 | version = "0.4.2" 559 | source = "registry+https://github.com/rust-lang/crates.io-index" 560 | checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 561 | 562 | [[package]] 563 | name = "rand_hc" 564 | version = "0.1.0" 565 | source = "registry+https://github.com/rust-lang/crates.io-index" 566 | checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" 567 | dependencies = [ 568 | "rand_core 0.3.1", 569 | ] 570 | 571 | [[package]] 572 | name = "rand_isaac" 573 | version = "0.1.1" 574 | source = "registry+https://github.com/rust-lang/crates.io-index" 575 | checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" 576 | dependencies = [ 577 | "rand_core 0.3.1", 578 | ] 579 | 580 | [[package]] 581 | name = "rand_jitter" 582 | version = "0.1.4" 583 | source = "registry+https://github.com/rust-lang/crates.io-index" 584 | checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" 585 | dependencies = [ 586 | "libc", 587 | "rand_core 0.4.2", 588 | "winapi", 589 | ] 590 | 591 | [[package]] 592 | name = "rand_os" 593 | version = "0.1.3" 594 | source = "registry+https://github.com/rust-lang/crates.io-index" 595 | checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" 596 | dependencies = [ 597 | "cloudabi", 598 | "fuchsia-cprng", 599 | "libc", 600 | "rand_core 0.4.2", 601 | "rdrand", 602 | "winapi", 603 | ] 604 | 605 | [[package]] 606 | name = "rand_pcg" 607 | version = "0.1.2" 608 | source = "registry+https://github.com/rust-lang/crates.io-index" 609 | checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" 610 | dependencies = [ 611 | "autocfg 0.1.8", 612 | "rand_core 0.4.2", 613 | ] 614 | 615 | [[package]] 616 | name = "rand_xorshift" 617 | version = "0.1.1" 618 | source = "registry+https://github.com/rust-lang/crates.io-index" 619 | checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" 620 | dependencies = [ 621 | "rand_core 0.3.1", 622 | ] 623 | 624 | [[package]] 625 | name = "rdrand" 626 | version = "0.4.0" 627 | source = "registry+https://github.com/rust-lang/crates.io-index" 628 | checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 629 | dependencies = [ 630 | "rand_core 0.3.1", 631 | ] 632 | 633 | [[package]] 634 | name = "regex" 635 | version = "1.10.5" 636 | source = "registry+https://github.com/rust-lang/crates.io-index" 637 | checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" 638 | dependencies = [ 639 | "aho-corasick", 640 | "memchr", 641 | "regex-automata", 642 | "regex-syntax", 643 | ] 644 | 645 | [[package]] 646 | name = "regex-automata" 647 | version = "0.4.7" 648 | source = "registry+https://github.com/rust-lang/crates.io-index" 649 | checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 650 | dependencies = [ 651 | "aho-corasick", 652 | "memchr", 653 | "regex-syntax", 654 | ] 655 | 656 | [[package]] 657 | name = "regex-syntax" 658 | version = "0.8.4" 659 | source = "registry+https://github.com/rust-lang/crates.io-index" 660 | checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 661 | 662 | [[package]] 663 | name = "rustc-demangle" 664 | version = "0.1.24" 665 | source = "registry+https://github.com/rust-lang/crates.io-index" 666 | checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 667 | 668 | [[package]] 669 | name = "rustix" 670 | version = "0.38.34" 671 | source = "registry+https://github.com/rust-lang/crates.io-index" 672 | checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 673 | dependencies = [ 674 | "bitflags 2.6.0", 675 | "errno", 676 | "libc", 677 | "linux-raw-sys", 678 | "windows-sys", 679 | ] 680 | 681 | [[package]] 682 | name = "scoped-tls" 683 | version = "1.0.1" 684 | source = "registry+https://github.com/rust-lang/crates.io-index" 685 | checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 686 | 687 | [[package]] 688 | name = "signal-hook" 689 | version = "0.3.17" 690 | source = "registry+https://github.com/rust-lang/crates.io-index" 691 | checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 692 | dependencies = [ 693 | "libc", 694 | "signal-hook-registry", 695 | ] 696 | 697 | [[package]] 698 | name = "signal-hook-registry" 699 | version = "1.4.2" 700 | source = "registry+https://github.com/rust-lang/crates.io-index" 701 | checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 702 | dependencies = [ 703 | "libc", 704 | ] 705 | 706 | [[package]] 707 | name = "siphasher" 708 | version = "0.2.3" 709 | source = "registry+https://github.com/rust-lang/crates.io-index" 710 | checksum = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" 711 | 712 | [[package]] 713 | name = "smallvec" 714 | version = "1.13.2" 715 | source = "registry+https://github.com/rust-lang/crates.io-index" 716 | checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 717 | 718 | [[package]] 719 | name = "syn" 720 | version = "1.0.109" 721 | source = "registry+https://github.com/rust-lang/crates.io-index" 722 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 723 | dependencies = [ 724 | "proc-macro2", 725 | "quote", 726 | "unicode-ident", 727 | ] 728 | 729 | [[package]] 730 | name = "synstructure" 731 | version = "0.12.6" 732 | source = "registry+https://github.com/rust-lang/crates.io-index" 733 | checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 734 | dependencies = [ 735 | "proc-macro2", 736 | "quote", 737 | "syn", 738 | "unicode-xid", 739 | ] 740 | 741 | [[package]] 742 | name = "unicode-ident" 743 | version = "1.0.12" 744 | source = "registry+https://github.com/rust-lang/crates.io-index" 745 | checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 746 | 747 | [[package]] 748 | name = "unicode-xid" 749 | version = "0.2.4" 750 | source = "registry+https://github.com/rust-lang/crates.io-index" 751 | checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 752 | 753 | [[package]] 754 | name = "utf8parse" 755 | version = "0.2.2" 756 | source = "registry+https://github.com/rust-lang/crates.io-index" 757 | checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 758 | 759 | [[package]] 760 | name = "vigiland" 761 | version = "0.1.0" 762 | dependencies = [ 763 | "arc", 764 | "ctrlc", 765 | "env_logger", 766 | "log", 767 | "signal-hook", 768 | "wayland-client", 769 | "wayland-protocols", 770 | ] 771 | 772 | [[package]] 773 | name = "wayland-backend" 774 | version = "0.3.4" 775 | source = "registry+https://github.com/rust-lang/crates.io-index" 776 | checksum = "34e9e6b6d4a2bb4e7e69433e0b35c7923b95d4dc8503a84d25ec917a4bbfdf07" 777 | dependencies = [ 778 | "cc", 779 | "downcast-rs", 780 | "rustix", 781 | "scoped-tls", 782 | "smallvec", 783 | "wayland-sys", 784 | ] 785 | 786 | [[package]] 787 | name = "wayland-client" 788 | version = "0.31.3" 789 | source = "registry+https://github.com/rust-lang/crates.io-index" 790 | checksum = "1e63801c85358a431f986cffa74ba9599ff571fc5774ac113ed3b490c19a1133" 791 | dependencies = [ 792 | "bitflags 2.6.0", 793 | "rustix", 794 | "wayland-backend", 795 | "wayland-scanner", 796 | ] 797 | 798 | [[package]] 799 | name = "wayland-protocols" 800 | version = "0.31.2" 801 | source = "registry+https://github.com/rust-lang/crates.io-index" 802 | checksum = "8f81f365b8b4a97f422ac0e8737c438024b5951734506b0e1d775c73030561f4" 803 | dependencies = [ 804 | "bitflags 2.6.0", 805 | "wayland-backend", 806 | "wayland-client", 807 | "wayland-scanner", 808 | ] 809 | 810 | [[package]] 811 | name = "wayland-scanner" 812 | version = "0.31.2" 813 | source = "registry+https://github.com/rust-lang/crates.io-index" 814 | checksum = "67da50b9f80159dec0ea4c11c13e24ef9e7574bd6ce24b01860a175010cea565" 815 | dependencies = [ 816 | "proc-macro2", 817 | "quick-xml", 818 | "quote", 819 | ] 820 | 821 | [[package]] 822 | name = "wayland-sys" 823 | version = "0.31.2" 824 | source = "registry+https://github.com/rust-lang/crates.io-index" 825 | checksum = "105b1842da6554f91526c14a2a2172897b7f745a805d62af4ce698706be79c12" 826 | dependencies = [ 827 | "dlib", 828 | "log", 829 | "pkg-config", 830 | ] 831 | 832 | [[package]] 833 | name = "winapi" 834 | version = "0.3.9" 835 | source = "registry+https://github.com/rust-lang/crates.io-index" 836 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 837 | dependencies = [ 838 | "winapi-i686-pc-windows-gnu", 839 | "winapi-x86_64-pc-windows-gnu", 840 | ] 841 | 842 | [[package]] 843 | name = "winapi-i686-pc-windows-gnu" 844 | version = "0.4.0" 845 | source = "registry+https://github.com/rust-lang/crates.io-index" 846 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 847 | 848 | [[package]] 849 | name = "winapi-x86_64-pc-windows-gnu" 850 | version = "0.4.0" 851 | source = "registry+https://github.com/rust-lang/crates.io-index" 852 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 853 | 854 | [[package]] 855 | name = "windows-sys" 856 | version = "0.52.0" 857 | source = "registry+https://github.com/rust-lang/crates.io-index" 858 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 859 | dependencies = [ 860 | "windows-targets", 861 | ] 862 | 863 | [[package]] 864 | name = "windows-targets" 865 | version = "0.52.5" 866 | source = "registry+https://github.com/rust-lang/crates.io-index" 867 | checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 868 | dependencies = [ 869 | "windows_aarch64_gnullvm", 870 | "windows_aarch64_msvc", 871 | "windows_i686_gnu", 872 | "windows_i686_gnullvm", 873 | "windows_i686_msvc", 874 | "windows_x86_64_gnu", 875 | "windows_x86_64_gnullvm", 876 | "windows_x86_64_msvc", 877 | ] 878 | 879 | [[package]] 880 | name = "windows_aarch64_gnullvm" 881 | version = "0.52.5" 882 | source = "registry+https://github.com/rust-lang/crates.io-index" 883 | checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 884 | 885 | [[package]] 886 | name = "windows_aarch64_msvc" 887 | version = "0.52.5" 888 | source = "registry+https://github.com/rust-lang/crates.io-index" 889 | checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 890 | 891 | [[package]] 892 | name = "windows_i686_gnu" 893 | version = "0.52.5" 894 | source = "registry+https://github.com/rust-lang/crates.io-index" 895 | checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 896 | 897 | [[package]] 898 | name = "windows_i686_gnullvm" 899 | version = "0.52.5" 900 | source = "registry+https://github.com/rust-lang/crates.io-index" 901 | checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 902 | 903 | [[package]] 904 | name = "windows_i686_msvc" 905 | version = "0.52.5" 906 | source = "registry+https://github.com/rust-lang/crates.io-index" 907 | checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 908 | 909 | [[package]] 910 | name = "windows_x86_64_gnu" 911 | version = "0.52.5" 912 | source = "registry+https://github.com/rust-lang/crates.io-index" 913 | checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 914 | 915 | [[package]] 916 | name = "windows_x86_64_gnullvm" 917 | version = "0.52.5" 918 | source = "registry+https://github.com/rust-lang/crates.io-index" 919 | checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 920 | 921 | [[package]] 922 | name = "windows_x86_64_msvc" 923 | version = "0.52.5" 924 | source = "registry+https://github.com/rust-lang/crates.io-index" 925 | checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 926 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "vigiland" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | arc = "0.0.1" 10 | ctrlc = "3.4.4" 11 | env_logger = "0.11.3" 12 | log = "0.4.21" 13 | signal-hook = "0.3.17" 14 | wayland-client = "0.31.2" 15 | wayland-protocols = {version="0.31.2", features = ["client", "unstable"]} 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Vigiland 2 | 3 | Inhibit idle behaviour of a Wayland compositor. 4 | 5 | ## Installing 6 | 7 | ### Arch (AUR) 8 | 9 | Thanks @kulothunganug for [packaging Vigiland on the AUR](https://aur.archlinux.org/packages/vigiland-git). You can install it using an AUR helper like yay or paru: 10 | 11 | ``` 12 | paru -S vigiland-git 13 | ``` 14 | 15 | ### Nix 16 | 17 | Add the flake as an input: 18 | 19 | ```nix 20 | vigiland.url = "github:jappie3/vigiland"; 21 | ``` 22 | 23 | Install the package: 24 | 25 | ```nix 26 | environment.systemPackages = [inputs.vigiland.packages.${pkgs.system}.vigiland]; 27 | ``` 28 | 29 | ## Usage 30 | 31 | Run it, ctrl+c to exit: 32 | 33 | ```bash 34 | vigiland 35 | ``` 36 | 37 | You can also run it in the background & use `killall vigiland` to stop inhibiting idle behaviour: 38 | 39 | ```bash 40 | vigiland & disown 41 | ``` 42 | 43 | ## Technical 44 | 45 | Your compositor should support the `idle-inhibit-unstable-v1` protocol in order for Vigiland to work. 46 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- 1 | { 2 | "nodes": { 3 | "nixpkgs": { 4 | "locked": { 5 | "lastModified": 1719254875, 6 | "narHash": "sha256-ECni+IkwXjusHsm9Sexdtq8weAq/yUyt1TWIemXt3Ko=", 7 | "owner": "nixos", 8 | "repo": "nixpkgs", 9 | "rev": "2893f56de08021cffd9b6b6dfc70fd9ccd51eb60", 10 | "type": "github" 11 | }, 12 | "original": { 13 | "owner": "nixos", 14 | "ref": "nixos-unstable", 15 | "repo": "nixpkgs", 16 | "type": "github" 17 | } 18 | }, 19 | "root": { 20 | "inputs": { 21 | "nixpkgs": "nixpkgs" 22 | } 23 | } 24 | }, 25 | "root": "root", 26 | "version": 7 27 | } 28 | -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- 1 | { 2 | description = "Inhibit idle behaviour of a Wayland compositor"; 3 | 4 | inputs = { 5 | nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; 6 | }; 7 | 8 | outputs = {nixpkgs, ...}: let 9 | forAllSystems = function: 10 | nixpkgs.lib.genAttrs [ 11 | "x86_64-linux" 12 | "aarch64-linux" 13 | ] (system: function nixpkgs.legacyPackages.${system}); 14 | in { 15 | devShells = forAllSystems (pkgs: { 16 | default = pkgs.mkShell { 17 | packages = with pkgs; [rustfmt cargo]; 18 | }; 19 | }); 20 | packages = forAllSystems (pkgs: rec { 21 | default = vigiland; 22 | vigiland = pkgs.rustPlatform.buildRustPackage { 23 | name = "vigiland"; 24 | pname = "vigiland"; 25 | src = ./.; 26 | cargoLock.lockFile = ./Cargo.lock; 27 | doCheck = true; 28 | nativeBuildInputs = []; 29 | buildInputs = []; 30 | }; 31 | }); 32 | }; 33 | } 34 | -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- 1 | use env_logger; 2 | use log::{debug, error, info, warn}; 3 | use std::error::Error; 4 | use std::sync::atomic::{AtomicBool, Ordering}; 5 | use std::sync::Arc; 6 | use wayland_client::{ 7 | protocol::{wl_compositor, wl_registry, wl_surface}, 8 | Connection, Dispatch, Proxy, 9 | }; 10 | use wayland_protocols::wp::idle_inhibit::zv1::client::{ 11 | zwp_idle_inhibit_manager_v1::ZwpIdleInhibitManagerV1, zwp_idle_inhibitor_v1::ZwpIdleInhibitorV1, 12 | }; 13 | 14 | #[derive(Default)] 15 | struct AppData { 16 | compositor: Option<(wl_compositor::WlCompositor, u32)>, 17 | surface: Option, 18 | inhibit_manager: Option<(ZwpIdleInhibitManagerV1, u32)>, 19 | inhibitor: Option, 20 | } 21 | 22 | impl Dispatch for AppData { 23 | fn event( 24 | state: &mut Self, 25 | proxy: &wl_registry::WlRegistry, 26 | event: ::Event, 27 | _data: &(), 28 | _connection: &wayland_client::Connection, 29 | queue_handle: &wayland_client::QueueHandle, 30 | ) { 31 | match event { 32 | wl_registry::Event::Global { 33 | name, 34 | interface, 35 | version, 36 | } => { 37 | debug!("| Received wl_registry::Event::Global: {interface} v{version}"); 38 | if interface == wl_compositor::WlCompositor::interface().name 39 | && state.compositor.is_none() 40 | { 41 | // wl_compositor 42 | info!("> Bound: {interface} v{version}"); 43 | let compositor: wl_compositor::WlCompositor = 44 | proxy.bind(name, version, queue_handle, ()); 45 | state.surface = Some(compositor.create_surface(&queue_handle, ())); 46 | state.compositor = Some((compositor, name)); 47 | } else if interface == ZwpIdleInhibitManagerV1::interface().name { 48 | // zwp_idle_inhibit_manager 49 | info!("> Bound: {interface} v{version}"); 50 | state.inhibit_manager = 51 | Some((proxy.bind(name, version, queue_handle, ()), name)); 52 | }; 53 | } 54 | wl_registry::Event::GlobalRemove { name } => { 55 | debug!("| Received wl_registry::Event::GlobalRemove"); 56 | if let Some((_, compositor_name)) = &state.compositor { 57 | if name == *compositor_name { 58 | warn!("WlCompositor was removed"); 59 | state.compositor = None; 60 | state.surface = None; 61 | } 62 | } else if let Some((_, inhibit_manager_name)) = &state.inhibit_manager { 63 | if name == *inhibit_manager_name { 64 | warn!("ZwpIdleInhibitManagerV1 was removed"); 65 | state.inhibit_manager = None; 66 | } 67 | } 68 | } 69 | _ => {} 70 | } 71 | } 72 | } 73 | 74 | impl Dispatch for AppData { 75 | fn event( 76 | _state: &mut Self, 77 | _proxy: &wl_compositor::WlCompositor, 78 | _event: ::Event, 79 | _data: &(), 80 | _connection: &wayland_client::Connection, 81 | _queue_handle: &wayland_client::QueueHandle, 82 | ) { 83 | } 84 | } 85 | 86 | impl Dispatch for AppData { 87 | fn event( 88 | _state: &mut Self, 89 | _proxy: &wl_surface::WlSurface, 90 | _event: ::Event, 91 | _data: &(), 92 | _connection: &wayland_client::Connection, 93 | _queue_handle: &wayland_client::QueueHandle, 94 | ) { 95 | } 96 | } 97 | 98 | impl Dispatch for AppData { 99 | fn event( 100 | _state: &mut Self, 101 | _proxy: &ZwpIdleInhibitManagerV1, 102 | _event: ::Event, 103 | _data: &(), 104 | _connection: &wayland_client::Connection, 105 | _queue_handle: &wayland_client::QueueHandle, 106 | ) { 107 | } 108 | } 109 | 110 | impl Dispatch for AppData { 111 | fn event( 112 | _state: &mut Self, 113 | _proxy: &ZwpIdleInhibitorV1, 114 | _event: ::Event, 115 | _data: &(), 116 | _connection: &wayland_client::Connection, 117 | _queue_handle: &wayland_client::QueueHandle, 118 | ) { 119 | } 120 | } 121 | 122 | fn main() -> Result<(), Box> { 123 | env_logger::init(); 124 | 125 | let running = Arc::new(AtomicBool::new(false)); 126 | signal_hook::flag::register(signal_hook::consts::SIGINT, Arc::clone(&running))?; 127 | signal_hook::flag::register(signal_hook::consts::SIGTERM, Arc::clone(&running))?; 128 | 129 | let connection = Connection::connect_to_env().unwrap(); 130 | let mut event_queue = connection.new_event_queue(); 131 | let queue_handle = event_queue.handle(); 132 | let display = connection.display(); 133 | let _registry = display.get_registry(&queue_handle, ()); 134 | let mut state = AppData::default(); 135 | 136 | event_queue.roundtrip(&mut state).unwrap(); 137 | 138 | let Some((inhibit_manager, _)) = &state.inhibit_manager else { 139 | error!("No ZwpIdleInhibitManagerV1 loaded"); 140 | return Ok(()); 141 | }; 142 | let Some(surface) = &state.surface else { 143 | error!("No WlSurface loaded"); 144 | return Ok(()); 145 | }; 146 | // create idle inhibitor 147 | state.inhibitor = Some(inhibit_manager.create_inhibitor(surface, &queue_handle, ())); 148 | event_queue.roundtrip(&mut state).unwrap(); 149 | 150 | // wait for exit 151 | while !running.load(Ordering::Relaxed) { 152 | std::thread::sleep(std::time::Duration::from_millis(500)); 153 | } 154 | 155 | debug!("Cleaning up..."); 156 | 157 | let Some((inhibit_manager, _)) = &state.inhibit_manager else { 158 | error!("No ZwpIdleInhibitManagerV1 loaded"); 159 | return Ok(()); 160 | }; 161 | let Some(inhibitor) = &state.inhibitor else { 162 | error!("No ZwpIdleInhibitorV1 loaded"); 163 | return Ok(()); 164 | }; 165 | // cleanup, destroy inhibitor & inhibit manager 166 | inhibitor.destroy(); 167 | inhibit_manager.destroy(); 168 | event_queue.roundtrip(&mut state).unwrap(); 169 | 170 | debug!("Cleaned up, exiting..."); 171 | 172 | Ok(()) 173 | } 174 | --------------------------------------------------------------------------------