For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.
This file contains hidden or 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
| #!/bin/bash | |
| # Script to simplify the release flow. | |
| # 1) Fetch the current release version | |
| # 2) Increase the version (major, minor, patch) | |
| # 3) Add a new git tag | |
| # 4) Push the tag | |
| # Parse command line options. | |
| while getopts ":Mmpd" Option |
This file contains hidden or 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
| //usr/bin/gcc -IX11 -lX11 -Ifontconfig -lfontconfig cfetch.c -o cfetch -Os; exec ./cfetch | |
| /*-------------*\ | |
| / | FLEXFETCH | \ | |
| \ | 1.0.0.1 | / | |
| \*-------------*/ | |
| /* | |
| CHANGELOG |
This file contains hidden or 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
| #!/bin/sh | |
| # | |
| # Author: jzbor | |
| # Dependencies: xdo, xwininfo (optional), xdg-xmenu (optional), xmenu (optional | |
| # | |
| # Usage: | |
| # riot.sh | |
| # riot.sh xterm | |
| # riot.sh --focused | |
| # riot.sh --select |
This file contains hidden or 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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <X11/XKBlib.h> | |
| /* Compile this with -lX11 */ | |
| int main () | |
| { | |
| Display *display; | |
| Status status; |