Skip to content

astrabound/clipd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ClipD

A simple to use persistent clipboard manager.

Concept

ClipD stores data in json format accross multiple files in the configured directory.

  • Each file represent a clip.
  • Each clip can contain multiple pages.
  • Each page can contain multiple items

Clip

A collection of related pages of data.

Page

A collection of related items to be tracked.

Item

A single piece of information to be tracked.

Data structure

{
  "clip_id": "string-uuid",
  "clip_name": "string",
  "clip_description": "string",
  "pages": [
    {
      "page_id": "string-uuid",
      "page_name": "string",
      "page_description": "string",
      "items": [
        {
          "item_id": "string-uuid",
          "item_name": "string",
          "item_data": "string"
        }
      ]
    }
  ]
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published