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
out_to_x no | |
out_to_console yes | |
TEXT | |
${if_match "${eval $${exec ./script.sh '${time %A}'}}" == "latin"}boring${else}exciting!${endif} |
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
own_window yes | |
own_window_type panel | |
alignment tl | |
minimum_size 500 500 | |
lua_load dock.lua | |
lua_draw_hook_pre draw_pre | |
TEXT |
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
From 9fdb5a85b250cc0bb80deb9f2783a16c9dcc7777 Mon Sep 17 00:00:00 2001 | |
From: Bas Pape <[email protected]> | |
Date: Sun, 28 Dec 2014 13:30:43 +0100 | |
Subject: [PATCH] Perform proper reordering and shaping of glyphs | |
All RTL languages require reordering of the characters before drawing | |
them, and various scripts require positional shaping (e.g. Arabic and | |
Mongolian) as well. FriBidi [1] implements the Unicode Bidirectional | |
Algorithm (UAX#9, [2]) and has a simple API (a single function call) to | |
do both reordering and reshaping. |