Plugin displays the current time in the right bottom of the IDE window. That is especially useful when writing code in the full screen mode.
Plugin is published on plugins.jetbrains.com and can be easily installed via Settings | Plugins window.
git clone https://github.com/xamgore/intellij-clock.git
cd intellij-clock
We use gradle to build the plugin. It comes with a wrapper script (gradlew
or gradlew.bat
in the root of the repository) which downloads appropriate version of gradle automatically as long as you have JDK installed. Common tasks are:
-
./gradlew buildPlugin
— fully build plugin and create an archive atbuild/distributions
which can be installed into IntelliJ IDEA viaInstall plugin from disk
action found in File | Settings | Plugins. -
./gradlew runIde
— run a development IDE with the plugin installed. -
./gradlew test
— run all tests.
Here you can get the latest Intellij IDEA Community Edition. When hacking on the plugin, you will need DevKit plugin.
To import this project in IntelliJ, use File | New | Project from Existing Sources and select build.gradle
from the root directory of the plugin.
Fresh project versions are set to be auto published in https://plugins.jetbrains.com via Travis CI.