KO
|
EN
gitlite — search
Search
#javascript
#php
#c-plus-plus
#python
#java
#linux
#game
#shell
#c
#backup
#r
#swift
rngback
★ 40
Open GitHub ↗
Randomly generated geometric backgrounds
Download README (.md)
Explore Similar Repositories
firefox-privacy-restorer
:
A script to modify your Firefox preferences to disable telemetry, built-in advertisements, and data collection anti-features
ember-optional-features
:
No description available.
SPAC-SupplementaryMaterials
:
Supplementary material repository for Robust Video Content Alignment and Compensation framework for rain removal applications.
FlutterNativeCommunication
:
Communication between flutter and native modules
Robotics
:
Robotics Specialization from UPenn on Coursera
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
rngback
?
Download (.md)
 # rngback rngback is a simple, easy-to-use tool to randomly generate visually pleasing backgrounds. ## Installation To setup rngback, clone the repo and then run `setup.py`. $ git clone https://github.com/jedevc/rngback.git $ cd rngback $ python setup.py install You should then be able to access the `rngback` command. If not, then make sure that the pip installation directory is added to your `PATH`. ## Example usage Generate a 600x400 image, with 30x20 squares. $ rngback 600 400 15 10 Generate the same thing but with an blue foreground and a darkblue background. $ rngback 600 400 15 10 -fg blue -bg darkblue Add some variation to the foreground. $ rngback 600 400 15 10 -fg blue -bg darkblue -var 40 Randomize the foreground to a different shade of blue each time and a black background. $ rngback 600 400 15 10 -fg 'hsl({160-240}, {50-70}%, 60%)' -bg darkblue -var 40 Create gaps between the squares. $ rngback 600 400 15 10 -fg blue -bg darkblue -off 2 Use multiple foreground colors. $ rngback 600 400 15 10 -fg blue -fg mediumblue -bg darkblue ## More rngback comes with a builtin help. To view it, simply run: $ rngback --help ## License rngback uses the UNLICENSE and as such is completely free to use. Do whatever you feel like doing with it. Go. Be free :)