Compare commits

...

2 Commits

Author SHA1 Message Date
Alexander Popov c0be40db0f added usage in script 2024-03-28 17:41:27 +03:00
Alexander Popov 7c86af8f0b added editorconfig 2024-03-28 17:24:38 +03:00
5 changed files with 30 additions and 6 deletions

15
.editorconfig Normal file
View File

@ -0,0 +1,15 @@
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
[*.sh]
indent_size = 2

View File

@ -1,6 +1,7 @@
MIT License
Copyright (c) 2023 Roman Ožana (https://ozana.cz/)
Copyright (c) 2024 Alexander Popov (https://iiiypuk.me/)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -2,6 +2,8 @@
Write colored text to the terminal easily.
_Forker from https://github.com/OzzyCzech/colors.sh_
![Color palette](colors.png)
## Installation
@ -9,7 +11,7 @@ Write colored text to the terminal easily.
Download `colors.sh` and source it in your script or copy/paste the functions and variables into your script.
```shell
curl -O https://raw.githubusercontent.com/OzzyCzech/colors.sh/master/colors.sh
wget https://git.a2s.su/iiiypuk/colors.sh/raw/branch/main/colors.sh
```
## Usage
@ -23,4 +25,4 @@ echo "This is ${RED}red text${NC}"
## License
MIT
[MIT License](LICENSE)

View File

@ -1,9 +1,15 @@
#!/usr/bin/env bash
# This script is used to define colors for bash scripts
# GitHub: https://github.com/OzzyCzech/colors.sh
# Author: Roman Ožana <roman@ozana.cz>
# Git: https://git.a2s.su/iiiypuk/colors.sh
# Author: Alexander Popov
# License: MIT
# Update: 28 Mar 2024
# Usage:
#
# source colors.sh
# echo -e "This is ${RED}red text${NC}"
# Black and white
export BLACK='\033[0;30m'