ok rename
This commit is contained in:
parent
b5155dad28
commit
4f368eb378
3 changed files with 7 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
||||||
# fleep
|
# fleepit
|
||||||
|
|
||||||
Keyboard layout switcher based on xclip / etc for X11 & wayland
|
Keyboard layout switcher based on xclip / etc for X11 & wayland
|
||||||
|
|
||||||
|
@ -7,13 +7,13 @@ Keyboard layout switcher based on xclip / etc for X11 & wayland
|
||||||
1. Install required packages:
|
1. Install required packages:
|
||||||
* X11: `xclip`, `xdotool`
|
* X11: `xclip`, `xdotool`
|
||||||
|
|
||||||
2. install module: `pip install fleep`
|
2. install module: `pip install fleepit`
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
|
|
||||||
Sample usage for KDE:
|
Sample usage for KDE:
|
||||||
* Add custom program shortcut in settings
|
* Add custom program shortcut in settings
|
||||||
* Fill something like `fleep --mode x11 --langset qwerty-en-ru`
|
* Fill something like `fleepit --mode x11 --langset qwerty-en-ru`
|
||||||
* Set some shortcut, for example `CTRL+` `
|
* Set some shortcut, for example `CTRL+` `
|
||||||
|
|
||||||
# Support
|
# Support
|
||||||
|
|
8
setup.py
8
setup.py
|
@ -1,16 +1,16 @@
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='fleep',
|
name='fleepit',
|
||||||
version='1',
|
version='1',
|
||||||
py_modules=['fleep'],
|
py_modules=['fleepit'],
|
||||||
description='keyboard layout switcher based on xclip & other things',
|
description='keyboard layout switcher based on xclip & other things',
|
||||||
url='https://git.pegasko.art/bitrate16/fleep',
|
url='https://git.pegasko.art/bitrate16/fleepit',
|
||||||
author_email='pegasko@pegasko.art',
|
author_email='pegasko@pegasko.art',
|
||||||
license='AGPL 3.0',
|
license='AGPL 3.0',
|
||||||
keywords='keyboard layout shortcut layout-switcher',
|
keywords='keyboard layout shortcut layout-switcher',
|
||||||
entry_points='''
|
entry_points='''
|
||||||
[console_scripts]
|
[console_scripts]
|
||||||
fleep=fleep:main
|
fleepit=fleepit:main
|
||||||
''',
|
''',
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue