From 4f368eb378981e2eb9b694d6cb91057448400224 Mon Sep 17 00:00:00 2001 From: pegasko Date: Thu, 9 May 2024 02:51:45 +0300 Subject: [PATCH] ok rename --- README.md | 6 +++--- fleep.py => fleepit.py | 0 setup.py | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) rename fleep.py => fleepit.py (100%) diff --git a/README.md b/README.md index d2d5045..8c36bfe 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/fleep.py b/fleepit.py similarity index 100% rename from fleep.py rename to fleepit.py diff --git a/setup.py b/setup.py index d5d9513..ce5589c 100644 --- a/setup.py +++ b/setup.py @@ -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 ''', )