bkyle46k downloadsStatus bar item with vault statistics such as number of notes, files, attachments, and links.
Status bar item with vault statistics including the number of notes, files, attachments, and links.
After the plugin is installed and enabled you will see a new item appear in the status bar showing you the number of notes in your vault.
All statistics can be shown by creating and enabling a CSS snippet with the following content.
/* Show all vault statistics. */
.obsidian-vault-statistics--item {
display: initial !important;
}
Similarly to the above, one can show certain statistics using a similar method to the above. Below is a snippet that hides all by the notes and attachments statistics. The snippet can be modified to include more or different statistics.
/* Hide all statistics. */
.obsidian-vault-statistics--item {
display: none !important;
}
/* Always show the notes and attachments statistics. */
.obsidian-vault-statistics--item-notes,
.obsidian-vault-statistics--item-attachments {
display: initial !important;
}
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
debugger statement (#14)