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
version: 3 | |
dispatcher: relay | |
tag: local | |
type: mta | |
smtpname: sapiosoft.sapiosoft.com | |
helo: sapiosoft.sapiosoft.com | |
hostname: sapiosoft.sapiosoft.com | |
errorline: Network error on destination MXs | |
sockaddr: local | |
sender: @ |
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
# some simple test runs that work the gui/widget logic | |
testruns: | |
@echo just sigint / ctrl-c these | |
-./oxbar -y 0 -W "time time" | |
-./oxbar -y 0 -W "< time time" | |
-./oxbar -y 0 -W "| time time" | |
-./oxbar -y 0 -W "> time time" | |
-./oxbar -y 0 -W "time | time > time" | |
-./oxbar -y 0 -W "< | > time" | |
-./oxbar -y 0 -W "< time time | time time > time time" |
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
/* | |
* NOTE: This is a little long because I'm including all XCB setup I have | |
* (including handling tiling window managers). It's below the main cairo logic | |
* for ease, but included for posterity. This is a subset of a larger program | |
* I'm working on. | |
* | |
* WHAT THIS IS: | |
* A sample program illustrating a problem I'm having with cairo/xcb, where I | |
* want to have a window that supports transparency (alpha channel) for the | |
* background color, and other components, with a regular re-draw cycle |