shoji-bar-2

(★ 16)

No description available.

File Explorer

  • .editorconfig
  • .gitignore
  • .prettierignore
  • .prettierrc.json
  • app.tsx
  • env.d.ts
  • LICENSE
  • package-lock.json
  • package.json
  • README.md
  • style.scss
  • tsconfig.json

# Use via CDN

jsDelivr

jsDelivr 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.

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

magick

View Details ▼

Create, edit, compose, or convert between image formats.
This tool replaces `convert` in ImageMagick 7+. See `magick convert` to use the old tool in versions 7+.
Some subcommands, such as `mogrify` have their own usage documentation.

magick {{path/to/input_image.png}} {{path/to/output_image.jpg}}

Convert between image formats:

magick {{path/to/input_image.jpg}} -resize {{100x100}} {{path/to/output_image.jpg}}

Resize an image, making a new copy:

magick {{path/to/input_image.png}} -resize {{50}}% {{path/to/output_image.png}}

Resize an image by a percentage:

🔍

npm install

View Details ▼

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 ▼

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:

🔍

npx

View Details ▼

This command is an alias of `npm exec`.

tldr npm exec

View documentation for the original command:

🔍

bluetoothctl

View Details ▼

Manage Bluetooth devices.
See also: `bluetui`.

bluetoothctl

Enter the `bluetoothctl` interactive shell:

bluetoothctl devices

List all known devices:

bluetoothctl power {{on|off}}

Power the Bluetooth controller on or off:

🔍

brightnessctl

View Details ▼

Utility for reading and controlling device brightness for Linux operating systems.

brightnessctl {{[-l|--list]}}

List devices with changeable brightness:

brightnessctl {{[g|get]}}

Print the current brightness of the default device:

brightnessctl {{[g|get]}} {{[-d|--device]}} '{{device_name}}'

Print the current brightness of a specific device (can be a wildcard):

🔍

cliphist

View Details ▼

Manage clipboard history for Wayland compositors.
Works with `wl-copy` and `wl-paste`.

cliphist list

List clipboard history entries:

cliphist list | fzf | cliphist decode | wl-copy

Select and copy a previous clipboard entry (using `fzf`):

cliphist wipe

Delete all stored clipboard entries:

🔍

nmcli

View Details ▼

Manage the network configuration using NetworkManager.
See also: `nmtui`, `iw`, `iwctl`.

tldr nmcli device

View documentation for managing network interfaces and establishing new Wi-Fi connections:

tldr nmcli connection

View documentation for managing network connections:

tldr nmcli agent

View documentation for running `nmcli` as a NetworkManager secret/polkit agent:

🔍

paru

View Details ▼

An AUR helper and pacman wrapper.
See also: `pacman`, `yay`.

paru {{package_name_or_search_term}}

Interactively search for and install a package:

paru

Synchronize and update all packages:

paru -Sua

Upgrade AUR packages:

🔍

rfkill

View Details ▼

Enable and disable wireless devices.

rfkill

List devices:

rfkill {{[-o|--output]}} {{ID,TYPE,DEVICE,...}}

Filter by columns:

rfkill block {{bluetooth|wifi|gps|nfc|...}}

Block devices by type:

🔍

wl-copy

View Details ▼

Clear and copy to Wayland clipboard.
See also: `wl-paste`, `xclip`.

wl-copy "{{text}}"

Copy the text to the clipboard:

{{ls}} | wl-copy

Pipe the command (`ls`) output to the clipboard:

wl-copy --paste-once "{{text}}"

Copy for only one paste and then clear it:

🔍

wl-paste

View Details ▼

Paste content in Wayland clipboard.
See also: `wl-copy`, `xclip`.

wl-paste

Paste the contents of the clipboard:

wl-paste --primary

Paste the contents of the primary clipboard (highlighted text):

wl-paste > {{path/to/file}}

Write the contents of the clipboard to a file:

// repository documentation