Metadata-Version: 2.1
Name: qtheme
Version: 1.0
Summary: Tools for management qtile environment
Author: jsusmachaca
Author-email: falcorgd@gmail.com
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE

# QTHEME


![preview](preview/bars.png)
![preview](preview/term.png)

# Installation

```sh
git clone https://github.com/jsusmachaca/qtheme.git
cd qtheme
```

In Arch Linux
```sh
makepkg -si
```

In other distros
```sh
python setup.py build
python setup.py install
```

# Aplication

## Qtile
To list available themes for qtile and kitty
```sh
qtheme -ls
```
Output:

![preview](preview/list.png)

To change the qtile theme
```sh
qtheme --theme [theme]
```

To change the position of the bar
```sh
qtheme --position [top/bottom]
```

You can put the parameters together
```sh
qtheme -t nord -p t
```

## Kitty

To change the terminal theme
```sh
qtheme --terminal [theme]
```

To change the opacity
```sh
qtheme --terminal-opacity [opacity-value]
```

To change the terminal font family
```sh
qtheme --terminal-font [font-family]
```

## Qtile + Kitty

You can use the parameters together
```sh
qtheme -T onedark -To 0.80 -Tf "UbuntuMono Nerd Font"
```

You can also use the qtile and kitty parameters
```sh
qtheme -t forest -p b -T onedark -To 1 - Tf "Hack Nerd Font"
