doti3/bar/src/date.php
2017-12-04 19:41:16 +01:00

21 lines
316 B
PHP
Executable file

#!/usr/bin/php
<?php
require __DIR__.'/base/block.php';
$format = $argv[1] ?? 'd/m/Y';
$fullText = date($format);
if (getenv('BLOCK_BUTTON') === '1') {
shell_exec('i3-msg \'workspace "3. MAIL"\'');
}
echo block(
'date',
[
'full_text' => $fullText,
'color' => color('date'),
]
);