From d6c9a4fc87608136c9f3f5918e2b3e42c8c9d9c4 Mon Sep 17 00:00:00 2001 From: Ali Hatami Date: Wed, 3 May 2023 14:53:53 +0330 Subject: [PATCH] Rename python folder to xscript --- setup.sh | 4 ++-- src/scripts/{python => xscript}/changemouse.py | 0 src/scripts/{python => xscript}/conf/desktop.conf | 0 src/scripts/{python => xscript}/setupmonitor.py | 0 src/scripts/{python => xscript}/udevhandle.py | 0 src/scripts/{python => xscript}/util/__init__.py | 0 src/scripts/{python => xscript}/util/common.py | 0 src/scripts/{python => xscript}/util/egalax.py | 0 src/scripts/{python => xscript}/util/pointer.py | 0 src/scripts/{python => xscript}/util/randr.py | 0 src/scripts/{python => xscript}/util/x.py | 0 11 files changed, 2 insertions(+), 2 deletions(-) rename src/scripts/{python => xscript}/changemouse.py (100%) rename src/scripts/{python => xscript}/conf/desktop.conf (100%) rename src/scripts/{python => xscript}/setupmonitor.py (100%) rename src/scripts/{python => xscript}/udevhandle.py (100%) rename src/scripts/{python => xscript}/util/__init__.py (100%) rename src/scripts/{python => xscript}/util/common.py (100%) rename src/scripts/{python => xscript}/util/egalax.py (100%) rename src/scripts/{python => xscript}/util/pointer.py (100%) rename src/scripts/{python => xscript}/util/randr.py (100%) rename src/scripts/{python => xscript}/util/x.py (100%) diff --git a/setup.sh b/setup.sh index ce0f2fd..9ab5312 100755 --- a/setup.sh +++ b/setup.sh @@ -31,8 +31,8 @@ log 'Installing pyxlib and pyudev ...' pip3 install pyxlib pyudev -q draw_progress_bar 20 -log 'Installing scripts ...' -sudo cp -r src/scripts/python/* /usr/local/bin +log 'Installing X scripts ...' +sudo cp -r src/scripts/xscript/* /usr/local/bin draw_progress_bar 23 sudo cp src/scripts/setupmonitor.sh /usr/local/bin draw_progress_bar 27 diff --git a/src/scripts/python/changemouse.py b/src/scripts/xscript/changemouse.py similarity index 100% rename from src/scripts/python/changemouse.py rename to src/scripts/xscript/changemouse.py diff --git a/src/scripts/python/conf/desktop.conf b/src/scripts/xscript/conf/desktop.conf similarity index 100% rename from src/scripts/python/conf/desktop.conf rename to src/scripts/xscript/conf/desktop.conf diff --git a/src/scripts/python/setupmonitor.py b/src/scripts/xscript/setupmonitor.py similarity index 100% rename from src/scripts/python/setupmonitor.py rename to src/scripts/xscript/setupmonitor.py diff --git a/src/scripts/python/udevhandle.py b/src/scripts/xscript/udevhandle.py similarity index 100% rename from src/scripts/python/udevhandle.py rename to src/scripts/xscript/udevhandle.py diff --git a/src/scripts/python/util/__init__.py b/src/scripts/xscript/util/__init__.py similarity index 100% rename from src/scripts/python/util/__init__.py rename to src/scripts/xscript/util/__init__.py diff --git a/src/scripts/python/util/common.py b/src/scripts/xscript/util/common.py similarity index 100% rename from src/scripts/python/util/common.py rename to src/scripts/xscript/util/common.py diff --git a/src/scripts/python/util/egalax.py b/src/scripts/xscript/util/egalax.py similarity index 100% rename from src/scripts/python/util/egalax.py rename to src/scripts/xscript/util/egalax.py diff --git a/src/scripts/python/util/pointer.py b/src/scripts/xscript/util/pointer.py similarity index 100% rename from src/scripts/python/util/pointer.py rename to src/scripts/xscript/util/pointer.py diff --git a/src/scripts/python/util/randr.py b/src/scripts/xscript/util/randr.py similarity index 100% rename from src/scripts/python/util/randr.py rename to src/scripts/xscript/util/randr.py diff --git a/src/scripts/python/util/x.py b/src/scripts/xscript/util/x.py similarity index 100% rename from src/scripts/python/util/x.py rename to src/scripts/xscript/util/x.py