├── .gitignore ├── LICENSE ├── README.md ├── clipboard.py ├── config.py ├── constants.py ├── examplefigures ├── fig_1.png └── fig_2.png ├── examples ├── config.py ├── objects │ ├── ax.svg │ ├── blob.svg │ ├── dg.svg │ ├── ec.svg │ ├── ed.svg │ └── sec.svg └── styles │ ├── glass.svg │ ├── open.svg │ └── ray.svg ├── main.py ├── normal.py ├── rofi.py ├── styles.py ├── text.py └── vim.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/README.md -------------------------------------------------------------------------------- /clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/clipboard.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/config.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- 1 | TARGET = 'image/x-inkscape-svg' 2 | -------------------------------------------------------------------------------- /examplefigures/fig_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/examplefigures/fig_1.png -------------------------------------------------------------------------------- /examplefigures/fig_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/examplefigures/fig_2.png -------------------------------------------------------------------------------- /examples/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/examples/config.py -------------------------------------------------------------------------------- /examples/objects/ax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/examples/objects/ax.svg -------------------------------------------------------------------------------- /examples/objects/blob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/examples/objects/blob.svg -------------------------------------------------------------------------------- /examples/objects/dg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/examples/objects/dg.svg -------------------------------------------------------------------------------- /examples/objects/ec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/examples/objects/ec.svg -------------------------------------------------------------------------------- /examples/objects/ed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/examples/objects/ed.svg -------------------------------------------------------------------------------- /examples/objects/sec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/examples/objects/sec.svg -------------------------------------------------------------------------------- /examples/styles/glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/examples/styles/glass.svg -------------------------------------------------------------------------------- /examples/styles/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/examples/styles/open.svg -------------------------------------------------------------------------------- /examples/styles/ray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/examples/styles/ray.svg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/main.py -------------------------------------------------------------------------------- /normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/normal.py -------------------------------------------------------------------------------- /rofi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/rofi.py -------------------------------------------------------------------------------- /styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/styles.py -------------------------------------------------------------------------------- /text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/text.py -------------------------------------------------------------------------------- /vim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillescastel/inkscape-shortcut-manager/HEAD/vim.py --------------------------------------------------------------------------------