unofficial-watchfaces

(★ 68)

Database of community-made watchfaces for AsteroidOS.

File Explorer

  • .gitignore
  • loader.qml
  • README.md
  • watchface

# 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:

🔍

git reset

View Details ▼

Undo commits or unstage changes by resetting the current Git HEAD to the specified state.
If a path is passed, it works as "unstage"; if a commit hash or branch is passed, it works as "uncommit".

git reset

Unstage everything:

git reset {{path/to/file1 path/to/file2 ...}}

Unstage specific file(s):

git reset {{[-p|--patch]}} {{path/to/file}}

Interactively unstage portions of a file:

🔍

dialog

View Details ▼

Display dialog boxes on the terminal.
See also: `gum`, `whiptail`.

dialog --msgbox "{{Message}}" {{height}} {{width}}

Display a message:

dialog --inputbox "{{Enter text:}}" {{8}} {{40}} 2>{{output.txt}}

Prompt the user for text:

dialog --yesno "{{Continue?}}" {{7}} {{40}}

Prompt the user for a yes/no question:

🔍

whiptail

View Details ▼

Display text-based dialog boxes from shell scripts.
See also: `dialog`, `gum`.

whiptail --title "{{title}}" --msgbox "{{message}}" {{height_in_chars}} {{width_in_chars}}

Display a simple message:

whiptail --title "{{title}}" --yesno "{{message}}" {{height_in_chars}} {{width_in_chars}}

Display a boolean choice, returning the result through the exit code:

whiptail --title "{{title}}" --yes-button "{{text}}" --no-button "{{text}}" --yesno "{{message}}" {{height_in_chars}} {{width_in_chars}}

Customize the text on the yes/no buttons:

🔍

zenity

View Details ▼

Display dialogs from the command-line/shell scripts.
Return user-inserted values or 1 if error.

zenity --question

Display the default question dialog:

zenity --info --text "{{message}}"

Display an info dialog displaying a message:

zenity --forms --add-entry "{{name_label}}" --add-password "{{password_label}}" --separator ";"

Display a name/password form and output the data separated by ";" ("|" by default):

// repository documentation