pomodoro
No description available.
File Explorer
- extensions.json
- launch.json
- settings.json
- heart-animation - 1.png
- heart-animation - 2.png
- heart-animation - 3.png
- heart-animation - 1.png
- heart-animation - 2.png
- heart-animation - 3.png
- sleeping-animation - 1.png
- sleeping-animation - 2.png
- sleeping-animation - 3.png
- Alarm.m4a
- Focus.m4a
- Relax.m4a
- exit.png
- frame.png
- minimize.png
- reset.png
- settings-selected.png
- settings.png
- skip.png
- stats-selected.png
- stats.png
- tasks-selected.png
- tasks.png
- timer-selected.png
- timer.png
- today-count.png
- window.png
- settings-cat.png
- settings-frame.png
- settings-ornaments.png
- settings-plant.png
- settings-star.png
- completed-strawberry.png
- empty-strawberry.png
- stats-cat.png
- stats-frame.png
- strawberry-stat-display.png
- active.png
- add-task.png
- add.png
- all.png
- checkbox-done.png
- checkbox.png
- done.png
- task.png
- tasks-frame.png
- tasks-trash-button.png
- background-clouds.png
- background-ornaments.png
- background-plants.png
- background.png
- cat-awake.png
- cat-sleeping.png
- leaf.png
- pause.png
- play.png
- text-bubble.png
- exit.png
- frame.png
- minimize.png
- reset.png
- settings-selected.png
- settings.png
- skip.png
- stats-selected.png
- stats.png
- tasks-selected.png
- tasks.png
- timer-selected.png
- timer.png
- today-count.png
- window.png
- settings-cat.png
- settings-frame.png
- settings-ornaments.png
- settings-plant.png
- settings-star.png
- completed-strawberry.png
- empty-strawberry.png
- stats-cat.png
- stats-frame.png
- strawberry-stat-display.png
- active.png
- add-task.png
- add.png
- all.png
- checkbox-done.png
- checkbox.png
- done.png
- task.png
- tasks-frame.png
- tasks-trash-button.png
- background-clouds.png
- background-ornaments.png
- background-plants.png
- background.png
- cat-awake.png
- cat-sleeping.png
- leaf.png
- pause.png
- play.png
- text-bubble.png
- entitlements.mac.plist
- icon.icns
- icon.ico
- icon.png
- icon.png
- alpha-bbox.py
- figma-extract.mjs
- setup.cjs
- index.ts
- index.d.ts
- index.ts
- FiveFontsatFreddy's-Regular.ttf
- base.css
- main.css
- SettingsModifier.tsx
- SettingsToggle.tsx
- AddTaskInput.tsx
- TaskFilters.tsx
- TaskRow.tsx
- TimerAudio.tsx
- TimerEmote.tsx
- assets.ts
- canvas.ts
- figma.ts
- settings.ts
- tasks.ts
- useTimer.ts
- SettingsPanel.tsx
- StatsPanel.tsx
- TasksPanel.tsx
- TimerPanel.tsx
- App.tsx
- env.d.ts
- figma-text.json
- main.tsx
- index.html
- .editorconfig
- .env.example
- .gitignore
- .prettierignore
- .prettierrc.yaml
- electron-builder.yml
- electron.vite.config.ts
- eslint.config.mjs
- package-lock.json
- package.json
- README.md
- tsconfig.json
- tsconfig.node.json
- tsconfig.web.json
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
dir
View Details ▼
dir
List files.
dir
List files in the current working directory:
tldr ls
View documentation for the original command:
dir
Show the contents of the current directory:
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
unzip
View Details ▼
unzip
Extract files/directories from Zip archives.
See also: `zip`.
unzip {{path/to/archive1.zip path/to/archive2.zip ...}}
Extract all files/directories from specific archives into the current directory:
unzip {{path/to/archive1.zip path/to/archive2.zip ...}} -d {{path/to/output}}
Extract files/directories from archives to a specific path:
unzip -c {{path/to/archive1.zip path/to/archive2.zip ...}}
Extract files/directories from archives to `stdout` alongside the extracted file names:
dpkg
View Details ▼
dpkg
Debian package manager.
Some subcommands such as `deb` have their own usage documentation.
For equivalent commands in other package managers, see <https://wiki.archlinux.org/title/Pacman/Rosetta>.
sudo dpkg {{[-i|--install]}} {{path/to/file.deb}}
Install a package:
sudo dpkg {{[-r|--remove]}} {{package}}
Remove a package:
dpkg {{[-l|--list]}} {{pattern}}
List installed packages:
codesign
View Details ▼
codesign
Create and manipulate code signatures for macOS.
codesign --sign "{{My Company Name}}" {{path/to/application_file.app}}
Sign an application with a certificate:
codesign --verify {{path/to/application_file.app}}
Verify the certificate of an application:
ditto
View Details ▼
ditto
Copy files and directories.
ditto {{path/to/source_directory}} {{path/to/destination_directory}}
Overwrite contents of destination directory with contents of source directory:
ditto -V {{path/to/source_directory}} {{path/to/destination_directory}}
Print a line to the Terminal window for every file that's being copied:
ditto -rsrc {{path/to/source_directory}} {{path/to/destination_directory}}
Copy a given file or directory, while retaining the original file permissions:
xattr
View Details ▼
xattr
Utility to work with extended filesystem attributes.
xattr -l {{file}}
List key:value extended attributes for a given file:
xattr -w {{attribute_key}} {{attribute_value}} {{file}}
Write an attribute for a given file:
xattr -d {{com.apple.quarantine}} {{file}}
Delete an attribute from a given file:
