ok rename

This commit is contained in:
pegasko 2024-05-09 02:51:45 +03:00
parent b5155dad28
commit 4f368eb378
3 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
# fleep
# fleepit
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:
* X11: `xclip`, `xdotool`
2. install module: `pip install fleep`
2. install module: `pip install fleepit`
# Usage
Sample usage for KDE:
* 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+` `
# Support

View file

@ -1,16 +1,16 @@
from setuptools import setup, find_packages
setup(
name='fleep',
name='fleepit',
version='1',
py_modules=['fleep'],
py_modules=['fleepit'],
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',
license='AGPL 3.0',
keywords='keyboard layout shortcut layout-switcher',
entry_points='''
[console_scripts]
fleep=fleep:main
fleepit=fleepit:main
''',
)