translucenttb


Nametranslucenttb JSON
Version 0.0.4 PyPI version JSON
download
home_pagehttps://github.com/littlewhitecloud/TranslucentTB/
SummaryA python version TranslucentTB
upload_time2023-07-04 08:02:19
maintainer
docs_urlNone
authorlittlewhitecloud
requires_python
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ### TranslucentTB
#### This is a python version TranslucentTB maybe with tkinter and ctypes

A lightweight utility that makes the Windows taskbar translucent/transparent on Windows 10 and Windows11.

### Screenshots
![image](https://github.com/littlewhitecloud/TranslucentTB/assets/71159641/97763cac-2b58-4208-b98b-36d031c86880)
![image](https://github.com/littlewhitecloud/TranslucentTB/assets/71159641/761f84b4-5367-40a2-81ec-e9e97b2f19f5)
![image](https://github.com/littlewhitecloud/TranslucentTB/assets/71159641/78b2a579-4c5f-4d95-8b68-4fe2b4f2ba29)
![image](https://github.com/littlewhitecloud/TranslucentTB/assets/71159641/211f4147-ce5d-4f04-9126-e274369abdfd)

### Usage
```python
from translucenttb import blur # import the blur function
blur(blurtype="acrylic") # for example acrylic
# choose one type from ("clear", "noeffect", "blur", "acrylic")
```

### UI
![image](https://github.com/littlewhitecloud/TranslucentTB/assets/71159641/0a9ecdd5-f5ae-4fa9-b124-09a1e9ed849a)
```python
from translucenttb import Settings
example = Settings()
example.mainloop()
```
### Example:
<details>
    
```python
from time import sleep

from translucenttb import blur


def colorful():
    hexdict = [
        "#FF0000",
        "#FF3030",
        "#FF5656",
        "#FF7456",
        "#FFA500",
        "#FF7438",
        "#FF8956",
        "#FFAB56",
        "#FFB871",
        "#FFFF00",
        "#FFCD71",
        "#FFE071",
        "#FFF571",
        "#F4FF71",
        "#D8FF71",
        "#C8FF71",
        "#008000",
        "#9FF65B",
        "#00FFFF",
        "#79F65B",
        "#5FF65B",
        "#5BF67D",
        "#5BF69C",
        "#5BF67D",
        "#5BF6C5",
        "#5BF6DC",
        "#2AFFDC",
        "#2AFCFF",
        "#2AC5FF",
        "#2AADFF",
        "#2A87FF",
        "#2A6BFF",
        "#2A49FF",
        "#0000FF",
        "#2A35FF",
        "#3A2AFF",
        "#502AFF",
        "#602AFF",
        "#800080",
    ]

    for hexcolor in hexdict:
        blur("noeffect", hexcolor)
        sleep(0.1)


colorful()
```
https://github.com/littlewhitecloud/TranslucentTB/assets/71159641/a2d0b4cc-0698-46c0-b050-e3d89c788964

</details>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/littlewhitecloud/TranslucentTB/",
    "name": "translucenttb",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "littlewhitecloud",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/71/e9/1172d94dad1f0f714a2b1de4160b1cb538a47918a61786ae06af4bbc1c48/translucenttb-0.0.4.tar.gz",
    "platform": null,
    "description": "### TranslucentTB\n#### This is a python version TranslucentTB maybe with tkinter and ctypes\n\nA lightweight utility that makes the Windows taskbar translucent/transparent on Windows 10 and Windows11.\n\n### Screenshots\n![image](https://github.com/littlewhitecloud/TranslucentTB/assets/71159641/97763cac-2b58-4208-b98b-36d031c86880)\n![image](https://github.com/littlewhitecloud/TranslucentTB/assets/71159641/761f84b4-5367-40a2-81ec-e9e97b2f19f5)\n![image](https://github.com/littlewhitecloud/TranslucentTB/assets/71159641/78b2a579-4c5f-4d95-8b68-4fe2b4f2ba29)\n![image](https://github.com/littlewhitecloud/TranslucentTB/assets/71159641/211f4147-ce5d-4f04-9126-e274369abdfd)\n\n### Usage\n```python\nfrom translucenttb import blur # import the blur function\nblur(blurtype=\"acrylic\") # for example acrylic\n# choose one type from (\"clear\", \"noeffect\", \"blur\", \"acrylic\")\n```\n\n### UI\n![image](https://github.com/littlewhitecloud/TranslucentTB/assets/71159641/0a9ecdd5-f5ae-4fa9-b124-09a1e9ed849a)\n```python\nfrom translucenttb import Settings\nexample = Settings()\nexample.mainloop()\n```\n### Example:\n<details>\n    \n```python\nfrom time import sleep\n\nfrom translucenttb import blur\n\n\ndef colorful():\n    hexdict = [\n        \"#FF0000\",\n        \"#FF3030\",\n        \"#FF5656\",\n        \"#FF7456\",\n        \"#FFA500\",\n        \"#FF7438\",\n        \"#FF8956\",\n        \"#FFAB56\",\n        \"#FFB871\",\n        \"#FFFF00\",\n        \"#FFCD71\",\n        \"#FFE071\",\n        \"#FFF571\",\n        \"#F4FF71\",\n        \"#D8FF71\",\n        \"#C8FF71\",\n        \"#008000\",\n        \"#9FF65B\",\n        \"#00FFFF\",\n        \"#79F65B\",\n        \"#5FF65B\",\n        \"#5BF67D\",\n        \"#5BF69C\",\n        \"#5BF67D\",\n        \"#5BF6C5\",\n        \"#5BF6DC\",\n        \"#2AFFDC\",\n        \"#2AFCFF\",\n        \"#2AC5FF\",\n        \"#2AADFF\",\n        \"#2A87FF\",\n        \"#2A6BFF\",\n        \"#2A49FF\",\n        \"#0000FF\",\n        \"#2A35FF\",\n        \"#3A2AFF\",\n        \"#502AFF\",\n        \"#602AFF\",\n        \"#800080\",\n    ]\n\n    for hexcolor in hexdict:\n        blur(\"noeffect\", hexcolor)\n        sleep(0.1)\n\n\ncolorful()\n```\nhttps://github.com/littlewhitecloud/TranslucentTB/assets/71159641/a2d0b4cc-0698-46c0-b050-e3d89c788964\n\n</details>\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A python version TranslucentTB",
    "version": "0.0.4",
    "project_urls": {
        "Homepage": "https://github.com/littlewhitecloud/TranslucentTB/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "815505199327e002e92d950084da2c81fb3f85e3e05c57f1d23d7a0d064f5b06",
                "md5": "79dc5ba16b10de93faa5c87c2193eff2",
                "sha256": "16b2dd503326be5bb8e806fe28a462ea445144c652cee6a26a5b654e356e2465"
            },
            "downloads": -1,
            "filename": "translucenttb-0.0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "79dc5ba16b10de93faa5c87c2193eff2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 4323,
            "upload_time": "2023-07-04T08:02:18",
            "upload_time_iso_8601": "2023-07-04T08:02:18.185148Z",
            "url": "https://files.pythonhosted.org/packages/81/55/05199327e002e92d950084da2c81fb3f85e3e05c57f1d23d7a0d064f5b06/translucenttb-0.0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71e91172d94dad1f0f714a2b1de4160b1cb538a47918a61786ae06af4bbc1c48",
                "md5": "8f6a981ed3e664ff44523245c8cd7731",
                "sha256": "2bf59a330161fb414c967dffd1635b927595c45eab1c00a81729d16062ea5ebf"
            },
            "downloads": -1,
            "filename": "translucenttb-0.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "8f6a981ed3e664ff44523245c8cd7731",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3819,
            "upload_time": "2023-07-04T08:02:19",
            "upload_time_iso_8601": "2023-07-04T08:02:19.919461Z",
            "url": "https://files.pythonhosted.org/packages/71/e9/1172d94dad1f0f714a2b1de4160b1cb538a47918a61786ae06af4bbc1c48/translucenttb-0.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-04 08:02:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "littlewhitecloud",
    "github_project": "TranslucentTB",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "translucenttb"
}
        
Elapsed time: 0.35142s