Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

20 lines
385B

  1. #!/usr/bin/fish
  2. if count $argv
  3. set ws $argv[1]
  4. else
  5. set ws (i3-msg -t get_workspaces | jq --raw-output '.[]|select(.focused == true).name')
  6. end
  7. set focus_script ~/.workspaces/$ws.focus
  8. if type -q $focus_script
  9. $focus_script
  10. else
  11. i3-msg mode default
  12. end
  13. set space_script ~/.workspaces/$ws.space
  14. if type -q $space_script
  15. systemctl --user start workspace-app@$ws.service
  16. end