25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
123456789101112131415 |
- #!/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
|