Skip to content

nim901/Shorty

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Shorty

Master keyboard shortcuts

Changelog Ver 0.1:

  • First version. It kinda works.

TODO and bugs:

  • Support for shift key
  • Support for keys that are using shift (semicolon,ampersand...)
  • Support for multiple press on the same key
  • Case sensitive support
  • Memory leaks
  • New gui
  • Fixing more bugs.

Main Window

Image of main window

Image of main window

Demo video

How to create plugins:

Plugins are just a simple XML file with the application name, shortcut name and keys. Each shortcut has it's id (starting from 0), it's name, and the keys that triggers it. Modifiers keys that avilable are:

Ctrl
Alt
Enter 
  • Note: modifiers are case sensitive regular keys are not.
<?xml version="1.0" encoding="UTF-8"?>
<Paint>
    <Shortcut id="0">
        <Name>Copy</Name>
      <Key>Ctrl</Key>
      <Key>C</Key>
    </Shortcut>
    <Shortcut id="1">
        <Name>Paste</Name>
      <Key>Ctrl</Key>
      <Key>V</Key>
    </Shortcut>
</Paint>

Please note that this is my first QT C++ project so be nice to me :>

About

Master keyboard shortcuts

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published