You can not select more than 25 topics 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.

16 lines
245B

  1. #!/usr/bin/fish
  2. set todo_folder ~/.todo
  3. set todo_i3block_socket $todo_folder/i3block.sock
  4. function set_todo_i3block
  5. socat - UNIX-CONNECT:$todo_i3block_socket
  6. end
  7. set command $argv[1]
  8. switch $command
  9. case "finished"
  10. echo finished
  11. end