-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
97 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# Custom | ||
themes | ||
bin | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Bibata is one of the most popular cursors set in the Linux community so far and is now available for freely with multiple colors and size options for Windows as well. The aim of this project is to provide the personalized cursors to users. | ||
|
||
Check [url=https://github.com/ful1e5/Bibata_Cursor]README.md[/url] for installation, uninstallation, personalize cursor sizes or colors. | ||
|
||
[b]Notice:[/b] | ||
Until 2021 my cursors projects were well funded by 'pling.com' but since the 'pling-factor' on the website has decreased and monthly payments are <500$, It is now dependent on community funding and sponsorships. If you want to help me to maintain Bibata and my other open source projects actively, consider sponsoring my work on [url=https://github.com/sponsors/ful1e5]GitHub Sponsors[/url] or DM me on [url=https://twitter.com/ful1e5]Twitter[/url] if your company would like to support this project, I will gladly look into it and post your avatar in the README. | ||
|
||
I appreciate all the wonderful people who patronize and sponsoring my work. | ||
|
||
[b]Bibata Styles:[/b] | ||
- Bibata Modern: Round Edges Bibata Cursors | ||
- Bibata Original: Sharp Edges Bibata Cursors | ||
|
||
[b]XCursor Sizes:[/b] | ||
22x22, 24x24, 28x28, 32x32, 40x40, 48x48, 56x56, 64x64, 72x72, 80x80, 88x88, 96x96 | ||
|
||
[b]Windows Cursor Size:[/b] | ||
- 16x16 - Small | ||
- 24x24 - Regular | ||
- 32x32 - Large | ||
- 48x48 - Extra Large | ||
|
||
[b]License & Terms:[/b] | ||
'Bibata_Cursor' is available under the terms of the 'GPL-3.0' license. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#!/bin/bash | ||
# A script for preparing binaries for version release of Bibata Cursors, by Abdulkaiz Khatri | ||
|
||
|
||
declare -A names | ||
names["Bibata-Modern-Amber"]="Yellowish and rounded edge Bibata cursors." | ||
names["Bibata-Modern-Classic"]="Black and rounded edge Bibata cursors." | ||
names["Bibata-Modern-Ice"]="White and rounded edge Bibata cursors." | ||
names["Bibata-Original-Amber"]="Yellowish and sharp edge Bibata cursors." | ||
names["Bibata-Original-Classic"]="Black and sharp edge Bibata cursors." | ||
names["Bibata-Original-Ice"]="White and sharp edge Bibata cursors." | ||
|
||
# Cleanup old builds | ||
rm -rf themes | ||
|
||
# Building Bibata XCursor binaries | ||
for key in "${!names[@]}"; | ||
do | ||
comment="${names[$key]}"; | ||
ctgen build.toml -p x11 -d "bitmaps/$key" -n "$key" -c "$comment" & | ||
PID=$! | ||
wait $PID | ||
done | ||
|
||
|
||
# Building Bibata Windows binaries | ||
for key in "${!names[@]}"; | ||
do | ||
comment="${names[$key]}"; | ||
ctgen build.toml -p windows -s 16 -d "bitmaps/$key" -n "$key-Small" -c "$comment" & | ||
ctgen build.toml -p windows -s 24 -d "bitmaps/$key" -n "$key-Regular" -c "$comment" & | ||
ctgen build.toml -p windows -s 32 -d "bitmaps/$key" -n "$key-Large" -c "$comment" & | ||
ctgen build.toml -p windows -s 48 -d "bitmaps/$key" -n "$key-Extra-Large" -c "$comment" & | ||
PID=$! | ||
wait $PID | ||
done | ||
|
||
# Compressing Binaries | ||
mkdir -p bin | ||
|
||
for key in "${!names[@]}"; | ||
do | ||
tar -czvf "bin/${key}.tar.gz" "themes/${key}" & | ||
PID=$! | ||
wait $PID | ||
done | ||
|
||
for key in "${!names[@]}"; | ||
do | ||
zip -rv "bin/${key}-Windows.zip" "themes/${key}-Small-Windows" "themes/${key}-Regular-Windows" "themes/${key}-Large-Windows" "themes/${key}-Extra-Large-Windows" & | ||
PID=$! | ||
wait $PID | ||
done |