doti3/bar/src/time.php
2019-01-21 16:20:04 +01:00

28 lines
549 B
PHP
Executable file

#!/usr/bin/php
<?php
require __DIR__.'/base/block.php';
$format = $argv[1] ?? 'H:i:s';
$fullText = date($format);
if (getenv('BLOCK_BUTTON') === '1') {
shell_exec('i3-msg \'workspace "3. MAIL"\'');
}
if (date('H:i:s') === '13:37:00') {
shell_exec('notify-send "1337" "Powaaaa" --icon=/home/simon/Images/if_geek_zombie_60815.png');
}
$fullText = span(' '.$fullText.' ', color('date'), '#444');
echo block(
'time',
[
'full_text' => $fullText,
'separator' => false,
'separator_block_width' => 0,
]
);