

Analog Clock - VS Code Extension ⌚
Analog Clock adds a tab with an analog clock to the explorer view, displaying the current time.
Demo

Installation 💻
- Open Visual Studio Code.
- Press
Ctrl+P
(Windows/Linux) or Cmd+P
(macOS).
- Type
ext install analog-clock
.
- Press Enter.
Features ✨
A simple and easy-to-use analog clock with the following features:
- Size Setting: Choose between small and large sizes.
- Emboss Effect: Add a 3D effect to the clock.
- Date Display: Toggle the display of the date (year, month, day, and day of the week).
- Time Display: Toggle the display of digital time.
- Background Color: Set your preferred color in HEX format.
Usage 💡
- After installation, click the "Explorer" icon in the VSCode sidebar.
- The "Analog Clock" tab will appear at the bottom of the explorer view.
- Click the tab to display the analog clock.
Customize Settings
You can customize the settings via the following methods or through settings.json:
- Open
File > Preferences > Settings
from the VSCode menu.
- Type "Analog Clock" in the search bar.
- The following settings will be displayed:
- ⚙️ Size: Choose between small or large.
- 💫 Emboss Effect: Enable/disable the emboss effect.
- 📅 Date Display: Show/hide the date.
- 🕒 Time Display: Show/hide the digital time.
- 🎨 Background Color: Specify the color in HEX format.
Note: After changing settings, you need to reload VSCode to apply the changes.
Settings ⚙️
settings.json
You can change the extension settings in the settings.json
file:
analogClock.size
: Change the clock size. Options are Large
or Small
.
analogClock.enableEmboss
: Enable or disable the emboss effect.
analogClock.showDate
: Enable or disable the date display.
analogClock.showTime
: Enable or disable the time display.
analogClock.backgroundColor
: Set the background color in HEX format.
Example
// settings.json
{
"analogClock.backgroundColor": "#ff5733cc",
"analogClock.enableEmboss": true,
"analogClock.showDate": true,
"analogClock.showTime": true,
"analogClock.size": "Large"
}
Changelog 📝
All changes can be found in the CHANGELOG.
License ⚖️
This project is licensed under the MIT License.