linux-copycache 1.0.2__tar.gz → 1.0.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: linux-copycache
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: A lightweight, fast, and reliable clipboard manager for Linux (Ubuntu) mimicking Win+V.
5
5
  Home-page: https://github.com/randhana/linux-clipboard-manager
6
6
  Author: Pulathisi Kariyawasam
@@ -50,15 +50,15 @@ pip install linux-copycache
50
50
  ```
51
51
 
52
52
  ### System Dependencies
53
- The auto-pasting functionality requires `xdotool` and `xclip` to be installed on your system.
53
+ The auto-pasting functionality requires `xdotool` and `xclip` to be installed on your system. The GUI requires `libxcb-cursor0`.
54
54
  ```bash
55
- sudo apt install xdotool xclip
55
+ sudo apt install xdotool xclip libxcb-cursor0
56
56
  ```
57
57
 
58
58
  ## Running the tool
59
59
  Once installed, you can start the application from anywhere in your terminal:
60
60
  ```bash
61
- linux-clipboard
61
+ linux-copycache
62
62
  ```
63
63
  The application will launch, dock itself to your system tray, and quietly monitor your copied text!
64
64
 
@@ -68,7 +68,7 @@ For the native Windows experience, set up a custom shortcut:
68
68
  2. Scroll to the bottom and click **View and Customize Shortcuts**.
69
69
  3. Select **Custom Shortcuts** and click the **+** or **Add Shortcut** button.
70
70
  4. **Name:** `Clipboard Manager`
71
- 5. **Command:** `linux-clipboard`
71
+ 5. **Command:** `linux-copycache`
72
72
  6. **Shortcut:** Press `Super + V` (Windows key + V).
73
73
  7. Click **Add**.
74
74
 
@@ -23,15 +23,15 @@ pip install linux-copycache
23
23
  ```
24
24
 
25
25
  ### System Dependencies
26
- The auto-pasting functionality requires `xdotool` and `xclip` to be installed on your system.
26
+ The auto-pasting functionality requires `xdotool` and `xclip` to be installed on your system. The GUI requires `libxcb-cursor0`.
27
27
  ```bash
28
- sudo apt install xdotool xclip
28
+ sudo apt install xdotool xclip libxcb-cursor0
29
29
  ```
30
30
 
31
31
  ## Running the tool
32
32
  Once installed, you can start the application from anywhere in your terminal:
33
33
  ```bash
34
- linux-clipboard
34
+ linux-copycache
35
35
  ```
36
36
  The application will launch, dock itself to your system tray, and quietly monitor your copied text!
37
37
 
@@ -41,7 +41,7 @@ For the native Windows experience, set up a custom shortcut:
41
41
  2. Scroll to the bottom and click **View and Customize Shortcuts**.
42
42
  3. Select **Custom Shortcuts** and click the **+** or **Add Shortcut** button.
43
43
  4. **Name:** `Clipboard Manager`
44
- 5. **Command:** `linux-clipboard`
44
+ 5. **Command:** `linux-copycache`
45
45
  6. **Shortcut:** Press `Super + V` (Windows key + V).
46
46
  7. Click **Add**.
47
47
 
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
5
5
 
6
6
  setuptools.setup(
7
7
  name="linux-copycache",
8
- version="1.0.2",
8
+ version="1.0.3",
9
9
  author="Pulathisi Kariyawasam",
10
10
  author_email="pulathisi.kariyawasam@gmail.com",
11
11
  description="A lightweight, fast, and reliable clipboard manager for Linux (Ubuntu) mimicking Win+V.",
@@ -30,7 +30,7 @@ setuptools.setup(
30
30
  ],
31
31
  entry_points={
32
32
  "console_scripts": [
33
- "linux-clipboard=linux_clipboard_manager.clipboard_gui:main",
33
+ "linux-copycache=linux_clipboard_manager.clipboard_gui:main",
34
34
  ],
35
35
  },
36
36
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: linux-copycache
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: A lightweight, fast, and reliable clipboard manager for Linux (Ubuntu) mimicking Win+V.
5
5
  Home-page: https://github.com/randhana/linux-clipboard-manager
6
6
  Author: Pulathisi Kariyawasam
@@ -50,15 +50,15 @@ pip install linux-copycache
50
50
  ```
51
51
 
52
52
  ### System Dependencies
53
- The auto-pasting functionality requires `xdotool` and `xclip` to be installed on your system.
53
+ The auto-pasting functionality requires `xdotool` and `xclip` to be installed on your system. The GUI requires `libxcb-cursor0`.
54
54
  ```bash
55
- sudo apt install xdotool xclip
55
+ sudo apt install xdotool xclip libxcb-cursor0
56
56
  ```
57
57
 
58
58
  ## Running the tool
59
59
  Once installed, you can start the application from anywhere in your terminal:
60
60
  ```bash
61
- linux-clipboard
61
+ linux-copycache
62
62
  ```
63
63
  The application will launch, dock itself to your system tray, and quietly monitor your copied text!
64
64
 
@@ -68,7 +68,7 @@ For the native Windows experience, set up a custom shortcut:
68
68
  2. Scroll to the bottom and click **View and Customize Shortcuts**.
69
69
  3. Select **Custom Shortcuts** and click the **+** or **Add Shortcut** button.
70
70
  4. **Name:** `Clipboard Manager`
71
- 5. **Command:** `linux-clipboard`
71
+ 5. **Command:** `linux-copycache`
72
72
  6. **Shortcut:** Press `Super + V` (Windows key + V).
73
73
  7. Click **Add**.
74
74
 
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ linux-copycache = linux_clipboard_manager.clipboard_gui:main
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- linux-clipboard = linux_clipboard_manager.clipboard_gui:main