Add hyprload manifest (#2)

This commit is contained in:
Stanisław Zagórowski 2023-04-05 01:15:41 +02:00 committed by GitHub
parent 10522051cd
commit e3c9dab13e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 0 deletions

32
hyprload.toml Normal file
View File

@ -0,0 +1,32 @@
[borders-plus-plus]
description ="A plugin to add more borders to windows."
version = "1.0"
authors = ["Vaxry"]
[borders-plus-plus.build]
output = "borders-plus-plus/borders-plus-plus.so"
steps = [
"make -C borders-plus-plus all",
]
[csgo-vulkan-fix]
description = "A plugin to fix incorrect mouse offsets on csgo in Vulkan"
version = "1.0"
authors = ["Vaxry"]
[csgo-vulkan-fix.build]
output = "csgo-vulkan-fix/csgo-vulkan-fix.so"
steps = [
"make -C csgo-vulkan-fix all",
]
[hyprbars]
description = "A plugin to add title bars to windows"
version = "1.0"
authors = ["Vaxry"]
[hyprbars.build]
output = "hyprbars/hyprbars.so"
steps = [
"make -C hyprbars all",
]