Metadata-Version: 2.4
Name: watchtower-app
Version: 0.1.0
Summary: A linux task manager and system monitor
Requires-Python: >=3.13
Description-Content-Type: text/markdown
Requires-Dist: gpustat>=1.1.1
Requires-Dist: loguru>=0.7.3
Requires-Dist: platformdirs>=4.5.1
Requires-Dist: psutil>=7.2.0
Requires-Dist: pyqt6>=6.10.1

# Watchtower
A task manager & system monitor - done right

**NOTE: Watchtower is a linux application and should not be installed on a windows system, reported bugs about features not working or crashes / errors on windows will not be fixed.**

## Features
* Resource usage (updating live)
* Disk space (Used and availble)
* List of all processes running (updates every second)
  * Show individual process resource usage
  * Ability to kill (nuke) any process
  * Advanced statistics on processes disk usage, uptime etc
  * Sorting the processlist by ram and cpu usage
  * Searching the processlist
* Customization through themes (config based)
* Config with a growing amount of values to configure

## Installation
**Note: This will not work until the first release of watchtower, you can still manually install the source from the repo but i recommend you wait for a release!**
You can install it from pypi using a tool of your choice, some examples are:
* pip: `pip install watchtower-app`
* pipx: `pipx install watchtower-app`
* uv: `uv tool install watchtower-app`

Then you can launch the app by running `watchtower` in your terminal!
To make application launchers (Like rofi) and DE startmenus (KDE, Gnome etc) recognize and show the application a little more setup is needed, but fear not! Ive made it as easy as possible and you only have to run `watchtower-install` for it to work!

## Configuration
### Where are the config files?
The path can very depending on operating system, so to ensure that you have the right folder, launch watchtower through the terminal using `watchtower` after installation, this will log out the now created themes and config files.

### config.toml
Here is a full config.toml config with description on what everything means:
```toml
[misc]
default-sort = "cpu" # ram or cpu - the sorting option that will be set on startup
default-theme = "Modern" # must be one of the themes in themes.toml - theme to be loaded on startup
```
**More configuration will come as i add more features, so dont worry that its not that much yet!**

### themes.toml
The themes file will automatically add the 2 default themes ("Modern" and "Modern (Light)") if the themes.toml file doesnt exist or is empty.
Lets have a look at one of the default themes and what the different colors represent:
```toml
["Modern"]
bg = "#191c24" # Background of the window(s)
fg-1 = "#1F232D" # Foreground 1 - Background of the windows different sections
fg-2 = "#242935" # Foreground 2 - Background of the Meters, Processes, Buttons and Searchbars inside a section
fg-3 = "#2A2F3C" # Foreground 3 - Background of the handle in the process sections scrollbar
text = "hsl(0, 0%, 75%)" # Color of most of the text
text-header = "hsl(0, 0%, 85%)" # Color of the bigger text in Meters and Topbars
border = "rgb(46, 50, 66)" # Border of almost everything
button-bg = "rgb(44, 50, 63)" # Background of buttons in the process elements (except the NUKE button)
button-kill-bg = "#a32626" # Color of the NUKE button
bar-meter = "qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 rgb(230,120,120), stop:1 rgb(231,89,236))" # Color of the filled part in the meters, by default a nice gradient yoinked from my website, ch0.dev
```
