Dieses Repo ist archiviert. Du kannst Dateien sehen und es klonen, kannst aber nicht pushen oder Issues/Pull-Requests öffnen.
|
- #!/usr/bin/fish
-
- set todo_folder ~/.todo
- set todo_i3block_socket $todo_folder/i3block.sock
-
- function set_todo_i3block
- socat - UNIX-CONNECT:$todo_i3block_socket
- end
-
- set command $argv[1]
- switch $command
-
- case "finished"
- echo finished
- end
|