vscode-clockify icon indicating copy to clipboard operation
vscode-clockify copied to clipboard

Simpler start/stop

Open hazg opened this issue 3 years ago • 0 comments

Is there a way to do the same in the plugin?

I am currently using fabiospampinato.vscode-commands to make the counter start and stop

commands.json

{
  "commands": [
    {
      "command": "clockify.tracking.stop",
      "alignment": "right",
      "text": "$(primitive-square)",
      "tooltip": "Stop clockify",
      "color": "#ff0000"
    },
    {
      "command": "clockify.tracking.start",
      "alignment": "right",
      "text": "$(triangle-right)",
      "tooltip": "Start clockify",
      "color": "#10f009"
    } 
  
  ]
}

looks like this: Screenshot from 2021-06-22 09:13:54

hazg avatar Jun 22 '21 06:06 hazg