Add kitty terminal configuration

Update other stuff
This commit is contained in:
2019-05-04 21:03:07 +04:00
parent 5b2844a2f0
commit 19cc1b0528
249 changed files with 8937 additions and 98 deletions

11
.notion/statusd_task Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
CURRENT_TASK=$(/usr/bin/task active 2>&1 | head -n 4 | tail -n 1 | sed 's/\s\+/ /g')
if [[ $CURRENT_TASK == 'No matches.' ]]; then
echo ''
else
echo "Task: $CURRENT_TASK"
fi
exit 0