2020-07-18 15:12:14 -04:00
|
|
|
#+TITLE: Qtile Config
|
|
|
|
#+PROPERTY: header-args :tangle config.py
|
|
|
|
|
|
|
|
* Table of Contents :toc:
|
|
|
|
- [[#about-this-config][About This Config]]
|
|
|
|
- [[#features-of-qtile][Features of Qtile]]
|
|
|
|
- [[#imports][Imports]]
|
|
|
|
- [[#variables][Variables]]
|
|
|
|
- [[#keybindings][Keybindings]]
|
|
|
|
- [[#groups][Groups]]
|
|
|
|
- [[#settings-for-some-layouts][Settings For Some Layouts]]
|
|
|
|
- [[#layouts][Layouts]]
|
|
|
|
- [[#colors][Colors]]
|
|
|
|
- [[#prompt][Prompt]]
|
|
|
|
- [[#default-widget-settings][Default Widget Settings]]
|
|
|
|
- [[#widgets][Widgets]]
|
|
|
|
- [[#screens][Screens]]
|
2020-11-15 07:16:21 -05:00
|
|
|
- [[#some-important-functions][Some Important Functions]]
|
2020-07-18 15:12:14 -04:00
|
|
|
- [[#drag-floating-windows][Drag floating windows]]
|
|
|
|
- [[#floating-windows][Floating windows]]
|
|
|
|
- [[#startup-applications][Startup applications]]
|
|
|
|
|
|
|
|
* About This Config
|
|
|
|
#+CAPTION: Qtile Scrot
|
|
|
|
#+ATTR_HTML: :alt Qtile Scrot :title Qtile Scrot :align left
|
|
|
|
[[https://gitlab.com/dwt1/dotfiles/-/raw/master/.screenshots/dotfiles07-thumb.png]]
|
|
|
|
|
|
|
|
The following comments are the copyright and licensing information from the default
|
|
|
|
qtile config. Copyright (c) 2010 Aldo Cortesi, 2010, 2014 dequis, 2012 Randall Ma,
|
|
|
|
2012-2014 Tycho Andersen, 2012 Craig Barnes, 2013 horsik, 2013 Tao Sauvage
|
|
|
|
|
2020-07-18 19:12:59 -04:00
|
|
|
Modified by Derek Taylor
|
|
|
|
- My YouTube: [[http://www.youtube.com/c/DistroTube][http://www.youtube.com/c/DistroTube]]
|
|
|
|
- My GitLab: [[http://www.gitlab.com/dwt1/][http://www.gitlab.com/dwt1/]]
|
2020-07-18 15:12:14 -04:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
|
|
|
software and associated documentation files (the "Software"), to deal in the Software
|
|
|
|
without restriction, including without limitation the rights to use, copy, modify,
|
|
|
|
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
permit persons to whom the Software is furnished to do so, subject to the following
|
|
|
|
conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all copies
|
|
|
|
or substantial portions of the Software.
|
|
|
|
|
|
|
|
* Features of Qtile
|
|
|
|
- Simple, small and extensible. It's easy to write your own layouts, widgets and commands.
|
|
|
|
- Configured in Python.
|
|
|
|
- Command shell that allows all aspects of Qtile to be managed and inspected.
|
|
|
|
- Complete remote scriptability - write scripts to set up workspaces, manipulate windows, update status bar widgets and more.
|
|
|
|
- Qtile's remote scriptability makes it one of the most thoroughly unit-tested window managers around.
|
|
|
|
|
|
|
|
* Imports
|
|
|
|
These are python modules that must be imported for this config.
|
|
|
|
|
|
|
|
#+BEGIN_SRC python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import socket
|
|
|
|
import subprocess
|
2021-03-12 00:12:03 -05:00
|
|
|
from libqtile import qtile
|
|
|
|
from libqtile.config import Click, Drag, Group, KeyChord, Key, Match, Screen
|
2020-07-18 15:12:14 -04:00
|
|
|
from libqtile.command import lazy
|
|
|
|
from libqtile import layout, bar, widget, hook
|
2020-11-12 17:57:50 -05:00
|
|
|
from libqtile.lazy import lazy
|
2020-07-18 15:12:14 -04:00
|
|
|
from typing import List # noqa: F401
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
* Variables
|
|
|
|
Just some variables I am setting to make my life easier.
|
|
|
|
|
|
|
|
#+BEGIN_SRC python
|
|
|
|
mod = "mod4" # Sets mod key to SUPER/WINDOWS
|
|
|
|
myTerm = "alacritty" # My terminal of choice
|
|
|
|
#+END_SRC
|
|
|
|
|
2020-07-18 15:26:21 -04:00
|
|
|
* Keybindings
|
|
|
|
These are the keybindings for qtile.
|
|
|
|
|
2020-07-18 15:17:55 -04:00
|
|
|
| A FEW IMPORTANT KEYBINDINGS | ASSOCIATED ACTION |
|
|
|
|
|-----------------------------+--------------------------------------------------------------------------|
|
|
|
|
| MODKEY + RETURN | opens terminal (alacritty is the terminal but can be easily changed) |
|
|
|
|
| MODKEY + SHIFT + RETURN | opens run launcher (dmenu is the run launcher but can be easily changed) |
|
|
|
|
| MODKEY + TAB | rotates through the available layouts |
|
|
|
|
| MODKEY + SHIFT + c | closes window with focus |
|
|
|
|
| MODKEY + SHIFT + r | restarts qtile |
|
|
|
|
| MODKEY + SHIFT + q | quits qtile |
|
|
|
|
| MODKEY + 1-9 | switch focus to workspace (1-9) |
|
|
|
|
| MODKEY + SHIFT + 1-9 | send focused window to workspace (1-9) |
|
|
|
|
| MODKEY + j | lazy layout up (switches focus between windows in the stack) |
|
|
|
|
| MODKEY + k | lazy layout down (switches focus between windows in the stack) |
|
|
|
|
| MODKEY + SHIFT + j | lazy layout shuffle_up (rotates the windows in the stack) |
|
|
|
|
| MODKEY + SHIFT + k | lazy layout shuffle_down (rotates the windows in the stack) |
|
2021-03-12 17:49:30 -05:00
|
|
|
| MODKEY + h | shrink size of window (MondadTall layout) |
|
|
|
|
| MODKEY + l | expand size of window (MondadTall layout) |
|
2020-07-18 15:17:55 -04:00
|
|
|
| MODKEY + w | switch focus to monitor 1 |
|
|
|
|
| MODKEY + e | switch focus to monitor 2 |
|
|
|
|
| MODKEY + r | switch focus to monitor 3 |
|
|
|
|
| MODKEY + period | switch focus to next monitor |
|
|
|
|
| MODKEY + comma | switch focus to prev monitor |
|
2020-07-18 15:15:43 -04:00
|
|
|
|
2020-07-18 15:12:14 -04:00
|
|
|
#+BEGIN_SRC python
|
|
|
|
keys = [
|
|
|
|
### The essentials
|
|
|
|
Key([mod], "Return",
|
2020-12-12 10:09:31 -05:00
|
|
|
lazy.spawn(myTerm+" -e fish"),
|
2020-07-18 15:12:14 -04:00
|
|
|
desc='Launches My Terminal'
|
|
|
|
),
|
|
|
|
Key([mod, "shift"], "Return",
|
2021-03-10 22:50:45 -05:00
|
|
|
lazy.spawn("dmenu_run -p 'Run: '"),
|
|
|
|
# lazy.spawn("rofi -show drun -config ~/.config/rofi/themes/dt-dmenu.rasi -display-drun \"Run: \" -drun-display-format \"{name}\""),
|
2020-12-12 10:09:31 -05:00
|
|
|
desc='Run Launcher'
|
2020-07-18 15:12:14 -04:00
|
|
|
),
|
|
|
|
Key([mod], "Tab",
|
|
|
|
lazy.next_layout(),
|
|
|
|
desc='Toggle through layouts'
|
|
|
|
),
|
|
|
|
Key([mod, "shift"], "c",
|
|
|
|
lazy.window.kill(),
|
|
|
|
desc='Kill active window'
|
|
|
|
),
|
|
|
|
Key([mod, "shift"], "r",
|
|
|
|
lazy.restart(),
|
|
|
|
desc='Restart Qtile'
|
|
|
|
),
|
|
|
|
Key([mod, "shift"], "q",
|
|
|
|
lazy.shutdown(),
|
|
|
|
desc='Shutdown Qtile'
|
|
|
|
),
|
|
|
|
Key(["control", "shift"], "e",
|
|
|
|
lazy.spawn("emacsclient -c -a emacs"),
|
|
|
|
desc='Doom Emacs'
|
|
|
|
),
|
|
|
|
### Switch focus to specific monitor (out of three)
|
|
|
|
Key([mod], "w",
|
|
|
|
lazy.to_screen(0),
|
|
|
|
desc='Keyboard focus to monitor 1'
|
|
|
|
),
|
|
|
|
Key([mod], "e",
|
|
|
|
lazy.to_screen(1),
|
|
|
|
desc='Keyboard focus to monitor 2'
|
|
|
|
),
|
|
|
|
Key([mod], "r",
|
|
|
|
lazy.to_screen(2),
|
|
|
|
desc='Keyboard focus to monitor 3'
|
|
|
|
),
|
|
|
|
### Switch focus of monitors
|
|
|
|
Key([mod], "period",
|
|
|
|
lazy.next_screen(),
|
|
|
|
desc='Move focus to next monitor'
|
|
|
|
),
|
|
|
|
Key([mod], "comma",
|
|
|
|
lazy.prev_screen(),
|
|
|
|
desc='Move focus to prev monitor'
|
|
|
|
),
|
|
|
|
### Treetab controls
|
|
|
|
Key([mod, "control"], "k",
|
|
|
|
lazy.layout.section_up(),
|
|
|
|
desc='Move up a section in treetab'
|
|
|
|
),
|
|
|
|
Key([mod, "control"], "j",
|
|
|
|
lazy.layout.section_down(),
|
|
|
|
desc='Move down a section in treetab'
|
|
|
|
),
|
|
|
|
### Window controls
|
|
|
|
Key([mod], "k",
|
|
|
|
lazy.layout.down(),
|
|
|
|
desc='Move focus down in current stack pane'
|
|
|
|
),
|
|
|
|
Key([mod], "j",
|
|
|
|
lazy.layout.up(),
|
|
|
|
desc='Move focus up in current stack pane'
|
|
|
|
),
|
|
|
|
Key([mod, "shift"], "k",
|
|
|
|
lazy.layout.shuffle_down(),
|
|
|
|
desc='Move windows down in current stack'
|
|
|
|
),
|
|
|
|
Key([mod, "shift"], "j",
|
|
|
|
lazy.layout.shuffle_up(),
|
|
|
|
desc='Move windows up in current stack'
|
|
|
|
),
|
|
|
|
Key([mod], "h",
|
|
|
|
lazy.layout.shrink(),
|
|
|
|
lazy.layout.decrease_nmaster(),
|
|
|
|
desc='Shrink window (MonadTall), decrease number in master pane (Tile)'
|
|
|
|
),
|
2021-03-12 17:49:30 -05:00
|
|
|
Key([mod], "l",
|
|
|
|
lazy.layout.grow(),
|
|
|
|
lazy.layout.increase_nmaster(),
|
|
|
|
desc='Expand window (MonadTall), increase number in master pane (Tile)'
|
|
|
|
),
|
2020-07-18 15:12:14 -04:00
|
|
|
Key([mod], "n",
|
|
|
|
lazy.layout.normalize(),
|
|
|
|
desc='normalize window size ratios'
|
|
|
|
),
|
|
|
|
Key([mod], "m",
|
|
|
|
lazy.layout.maximize(),
|
|
|
|
desc='toggle window between minimum and maximum sizes'
|
|
|
|
),
|
|
|
|
Key([mod, "shift"], "f",
|
|
|
|
lazy.window.toggle_floating(),
|
|
|
|
desc='toggle floating'
|
|
|
|
),
|
|
|
|
Key([mod, "shift"], "m",
|
|
|
|
lazy.window.toggle_fullscreen(),
|
|
|
|
desc='toggle fullscreen'
|
|
|
|
),
|
|
|
|
### Stack controls
|
|
|
|
Key([mod, "shift"], "space",
|
|
|
|
lazy.layout.rotate(),
|
|
|
|
lazy.layout.flip(),
|
|
|
|
desc='Switch which side main pane occupies (XmonadTall)'
|
|
|
|
),
|
|
|
|
Key([mod], "space",
|
|
|
|
lazy.layout.next(),
|
|
|
|
desc='Switch window focus to other pane(s) of stack'
|
|
|
|
),
|
|
|
|
Key([mod, "control"], "Return",
|
|
|
|
lazy.layout.toggle_split(),
|
|
|
|
desc='Toggle between split and unsplit sides of stack'
|
|
|
|
),
|
2021-03-10 22:50:45 -05:00
|
|
|
# Emacs programs launched using the key chord CTRL+e followed by 'key'
|
|
|
|
KeyChord(["control"],"e", [
|
|
|
|
Key([], "e", lazy.spawn("emacsclient -c -a 'emacs'")),
|
|
|
|
Key([], "b", lazy.spawn("emacsclient -c -a 'emacs' --eval '(ibuffer)'")),
|
|
|
|
Key([], "d", lazy.spawn("emacsclient -c -a 'emacs' --eval '(dired nil)'")),
|
|
|
|
Key([], "i", lazy.spawn("emacsclient -c -a 'emacs' --eval '(erc)'")),
|
|
|
|
Key([], "m", lazy.spawn("emacsclient -c -a 'emacs' --eval '(mu4e)'")),
|
|
|
|
Key([], "n", lazy.spawn("emacsclient -c -a 'emacs' --eval '(elfeed)'")),
|
|
|
|
Key([], "s", lazy.spawn("emacsclient -c -a 'emacs' --eval '(eshell)'")),
|
|
|
|
Key([], "v", lazy.spawn("emacsclient -c -a 'emacs' --eval '(+vterm/here nil)'"))
|
|
|
|
]),
|
|
|
|
# Dmenu scripts launched using the key chord SUPER+p followed by 'key'
|
|
|
|
KeyChord([mod], "p", [
|
|
|
|
Key([], "e", lazy.spawn("./dmscripts/dmconf")),
|
|
|
|
Key([], "i", lazy.spawn("./dmscripts/dmscrot")),
|
|
|
|
Key([], "k", lazy.spawn("./dmscripts/dmkill")),
|
|
|
|
Key([], "l", lazy.spawn("./dmscripts/dmlogout")),
|
|
|
|
Key([], "m", lazy.spawn("./dmscripts/dman")),
|
|
|
|
Key([], "r", lazy.spawn("./dmscripts/dmred")),
|
|
|
|
Key([], "s", lazy.spawn("./dmscripts/dmsearch")),
|
|
|
|
Key([], "p", lazy.spawn("passmenu"))
|
|
|
|
])
|
2020-07-18 15:12:14 -04:00
|
|
|
]
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
* Groups
|
|
|
|
Groups are really workspaces.
|
|
|
|
|
|
|
|
#+BEGIN_SRC python
|
|
|
|
group_names = [("WWW", {'layout': 'monadtall'}),
|
|
|
|
("DEV", {'layout': 'monadtall'}),
|
|
|
|
("SYS", {'layout': 'monadtall'}),
|
|
|
|
("DOC", {'layout': 'monadtall'}),
|
|
|
|
("VBOX", {'layout': 'monadtall'}),
|
|
|
|
("CHAT", {'layout': 'monadtall'}),
|
|
|
|
("MUS", {'layout': 'monadtall'}),
|
|
|
|
("VID", {'layout': 'monadtall'}),
|
|
|
|
("GFX", {'layout': 'floating'})]
|
|
|
|
|
|
|
|
groups = [Group(name, **kwargs) for name, kwargs in group_names]
|
|
|
|
|
|
|
|
for i, (name, kwargs) in enumerate(group_names, 1):
|
|
|
|
keys.append(Key([mod], str(i), lazy.group[name].toscreen())) # Switch to another group
|
|
|
|
keys.append(Key([mod, "shift"], str(i), lazy.window.togroup(name))) # Send current window to another group
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
* Settings For Some Layouts
|
|
|
|
Settings that I use in most layouts, so I'm defining them one time here.
|
|
|
|
|
|
|
|
#+BEGIN_SRC python
|
|
|
|
layout_theme = {"border_width": 2,
|
2021-03-11 10:20:59 -05:00
|
|
|
"margin": 8,
|
2020-07-18 15:12:14 -04:00
|
|
|
"border_focus": "e1acff",
|
|
|
|
"border_normal": "1D2330"
|
|
|
|
}
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
* Layouts
|
|
|
|
The layouts that I use, plus several that I don't use. Uncomment the layouts you want; comment out the ones that you don't want to use.
|
|
|
|
|
|
|
|
#+BEGIN_SRC python
|
|
|
|
layouts = [
|
|
|
|
#layout.MonadWide(**layout_theme),
|
|
|
|
#layout.Bsp(**layout_theme),
|
|
|
|
#layout.Stack(stacks=2, **layout_theme),
|
|
|
|
#layout.Columns(**layout_theme),
|
|
|
|
#layout.RatioTile(**layout_theme),
|
|
|
|
#layout.VerticalTile(**layout_theme),
|
|
|
|
#layout.Matrix(**layout_theme),
|
|
|
|
#layout.Zoomy(**layout_theme),
|
|
|
|
layout.MonadTall(**layout_theme),
|
|
|
|
layout.Max(**layout_theme),
|
|
|
|
layout.Tile(shift_windows=True, **layout_theme),
|
|
|
|
layout.Stack(num_stacks=2),
|
|
|
|
layout.TreeTab(
|
|
|
|
font = "Ubuntu",
|
|
|
|
fontsize = 10,
|
|
|
|
sections = ["FIRST", "SECOND"],
|
|
|
|
section_fontsize = 11,
|
|
|
|
bg_color = "141414",
|
|
|
|
active_bg = "90C435",
|
|
|
|
active_fg = "000000",
|
|
|
|
inactive_bg = "384323",
|
|
|
|
inactive_fg = "a0a0a0",
|
|
|
|
padding_y = 5,
|
|
|
|
section_top = 10,
|
|
|
|
panel_width = 320
|
|
|
|
),
|
|
|
|
layout.Floating(**layout_theme)
|
|
|
|
]
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
* Colors
|
2021-03-12 00:12:03 -05:00
|
|
|
Defining some colors for use in our panel. Colors have two values because you can use gradients.
|
2020-07-18 15:12:14 -04:00
|
|
|
|
|
|
|
#+BEGIN_SRC python
|
2020-12-12 10:09:31 -05:00
|
|
|
colors = [["#282c34", "#282c34"], # panel background
|
2021-03-12 00:12:03 -05:00
|
|
|
["#3d3f4b", "#434758"], # background for current screen tab
|
2020-07-18 15:12:14 -04:00
|
|
|
["#ffffff", "#ffffff"], # font color for group names
|
|
|
|
["#ff5555", "#ff5555"], # border line color for current tab
|
2021-03-12 00:12:03 -05:00
|
|
|
["#74438f", "#74438f"], # border line color for 'other tabs' and color for 'odd widgets'
|
|
|
|
["#4f76c7", "#4f76c7"], # color for the 'even widgets'
|
2020-07-18 15:12:14 -04:00
|
|
|
["#e1acff", "#e1acff"]] # window name
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
* Prompt
|
|
|
|
Settings for the qtile run prompt, even though I don't actually use this. I prefer to use dmenu instead.
|
|
|
|
|
|
|
|
#+BEGIN_SRC python
|
|
|
|
prompt = "{0}@{1}: ".format(os.environ["USER"], socket.gethostname())
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
* Default Widget Settings
|
|
|
|
Defining a few default widget key values.
|
|
|
|
|
|
|
|
#+BEGIN_SRC python
|
|
|
|
##### DEFAULT WIDGET SETTINGS #####
|
|
|
|
widget_defaults = dict(
|
|
|
|
font="Ubuntu Mono",
|
|
|
|
fontsize = 12,
|
|
|
|
padding = 2,
|
|
|
|
background=colors[2]
|
|
|
|
)
|
|
|
|
extension_defaults = widget_defaults.copy()
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
* Widgets
|
|
|
|
This is the bar, or the panel, and the widgets within the bar.
|
|
|
|
|
|
|
|
#+BEGIN_SRC python
|
|
|
|
def init_widgets_list():
|
|
|
|
widgets_list = [
|
|
|
|
widget.Sep(
|
|
|
|
linewidth = 0,
|
|
|
|
padding = 6,
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[0]
|
|
|
|
),
|
|
|
|
widget.Image(
|
2021-03-11 21:19:27 -05:00
|
|
|
filename = "~/.config/qtile/icons/python-white.png",
|
|
|
|
scale = "False",
|
2021-03-12 00:12:03 -05:00
|
|
|
mouse_callbacks = {'Button1': lambda: qtile.cmd_spawn(myTerm)}
|
2020-07-18 15:12:14 -04:00
|
|
|
),
|
2021-03-10 22:50:45 -05:00
|
|
|
widget.Sep(
|
|
|
|
linewidth = 0,
|
|
|
|
padding = 6,
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[0]
|
|
|
|
),
|
2020-07-18 15:12:14 -04:00
|
|
|
widget.GroupBox(
|
|
|
|
font = "Ubuntu Bold",
|
|
|
|
fontsize = 9,
|
|
|
|
margin_y = 3,
|
|
|
|
margin_x = 0,
|
|
|
|
padding_y = 5,
|
|
|
|
padding_x = 3,
|
|
|
|
borderwidth = 3,
|
|
|
|
active = colors[2],
|
|
|
|
inactive = colors[2],
|
|
|
|
rounded = False,
|
|
|
|
highlight_color = colors[1],
|
|
|
|
highlight_method = "line",
|
2021-03-10 22:50:45 -05:00
|
|
|
this_current_screen_border = colors[6],
|
2020-07-18 15:12:14 -04:00
|
|
|
this_screen_border = colors [4],
|
2021-03-10 22:50:45 -05:00
|
|
|
other_current_screen_border = colors[6],
|
|
|
|
other_screen_border = colors[4],
|
2020-07-18 15:12:14 -04:00
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[0]
|
|
|
|
),
|
|
|
|
widget.Prompt(
|
|
|
|
prompt = prompt,
|
|
|
|
font = "Ubuntu Mono",
|
|
|
|
padding = 10,
|
|
|
|
foreground = colors[3],
|
|
|
|
background = colors[1]
|
|
|
|
),
|
|
|
|
widget.Sep(
|
|
|
|
linewidth = 0,
|
|
|
|
padding = 40,
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[0]
|
|
|
|
),
|
|
|
|
widget.WindowName(
|
|
|
|
foreground = colors[6],
|
|
|
|
background = colors[0],
|
|
|
|
padding = 0
|
|
|
|
),
|
2021-03-10 22:50:45 -05:00
|
|
|
widget.Systray(
|
|
|
|
background = colors[0],
|
|
|
|
padding = 5
|
|
|
|
),
|
|
|
|
widget.Sep(
|
|
|
|
linewidth = 0,
|
|
|
|
padding = 6,
|
|
|
|
foreground = colors[0],
|
|
|
|
background = colors[0]
|
|
|
|
),
|
2020-07-18 15:12:14 -04:00
|
|
|
widget.TextBox(
|
|
|
|
text = '',
|
|
|
|
background = colors[0],
|
|
|
|
foreground = colors[4],
|
|
|
|
padding = 0,
|
|
|
|
fontsize = 37
|
|
|
|
),
|
|
|
|
widget.TextBox(
|
|
|
|
text = " ₿",
|
|
|
|
padding = 0,
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[4],
|
|
|
|
fontsize = 12
|
|
|
|
),
|
|
|
|
widget.BitcoinTicker(
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[4],
|
|
|
|
padding = 5
|
|
|
|
),
|
|
|
|
widget.TextBox(
|
|
|
|
text = '',
|
|
|
|
background = colors[4],
|
|
|
|
foreground = colors[5],
|
|
|
|
padding = 0,
|
|
|
|
fontsize = 37
|
|
|
|
),
|
|
|
|
widget.TextBox(
|
|
|
|
text = " 🌡",
|
|
|
|
padding = 2,
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[5],
|
|
|
|
fontsize = 11
|
|
|
|
),
|
|
|
|
widget.ThermalSensor(
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[5],
|
|
|
|
threshold = 90,
|
|
|
|
padding = 5
|
|
|
|
),
|
|
|
|
widget.TextBox(
|
|
|
|
text='',
|
|
|
|
background = colors[5],
|
|
|
|
foreground = colors[4],
|
|
|
|
padding = 0,
|
|
|
|
fontsize = 37
|
|
|
|
),
|
|
|
|
widget.TextBox(
|
|
|
|
text = " ⟳",
|
|
|
|
padding = 2,
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[4],
|
|
|
|
fontsize = 14
|
|
|
|
),
|
2021-03-08 21:16:01 -05:00
|
|
|
widget.CheckUpdates(
|
2020-07-18 15:12:14 -04:00
|
|
|
update_interval = 1800,
|
2021-03-08 21:16:01 -05:00
|
|
|
distro = "Arch_checkupdates",
|
|
|
|
display_format = "{updates} Updates",
|
2020-07-18 15:12:14 -04:00
|
|
|
foreground = colors[2],
|
2021-03-12 00:12:03 -05:00
|
|
|
mouse_callbacks = {'Button1': lambda: qtile.cmd_spawn(myTerm + ' -e sudo pacman -Syu')},
|
2020-07-18 15:12:14 -04:00
|
|
|
background = colors[4]
|
|
|
|
),
|
|
|
|
widget.TextBox(
|
|
|
|
text = '',
|
|
|
|
background = colors[4],
|
|
|
|
foreground = colors[5],
|
|
|
|
padding = 0,
|
|
|
|
fontsize = 37
|
|
|
|
),
|
|
|
|
widget.TextBox(
|
|
|
|
text = " 🖬",
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[5],
|
|
|
|
padding = 0,
|
|
|
|
fontsize = 14
|
|
|
|
),
|
|
|
|
widget.Memory(
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[5],
|
2021-03-12 00:12:03 -05:00
|
|
|
mouse_callbacks = {'Button1': lambda: qtile.cmd_spawn(myTerm + ' -e htop')},
|
2020-07-18 15:12:14 -04:00
|
|
|
padding = 5
|
|
|
|
),
|
|
|
|
widget.TextBox(
|
|
|
|
text='',
|
|
|
|
background = colors[5],
|
|
|
|
foreground = colors[4],
|
|
|
|
padding = 0,
|
|
|
|
fontsize = 37
|
|
|
|
),
|
|
|
|
widget.Net(
|
|
|
|
interface = "enp6s0",
|
|
|
|
format = '{down} ↓↑ {up}',
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[4],
|
|
|
|
padding = 5
|
|
|
|
),
|
|
|
|
widget.TextBox(
|
|
|
|
text = '',
|
|
|
|
background = colors[4],
|
|
|
|
foreground = colors[5],
|
|
|
|
padding = 0,
|
|
|
|
fontsize = 37
|
|
|
|
),
|
|
|
|
widget.TextBox(
|
|
|
|
text = " Vol:",
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[5],
|
|
|
|
padding = 0
|
|
|
|
),
|
|
|
|
widget.Volume(
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[5],
|
|
|
|
padding = 5
|
|
|
|
),
|
|
|
|
widget.TextBox(
|
|
|
|
text = '',
|
|
|
|
background = colors[5],
|
|
|
|
foreground = colors[4],
|
|
|
|
padding = 0,
|
|
|
|
fontsize = 37
|
|
|
|
),
|
|
|
|
widget.CurrentLayoutIcon(
|
|
|
|
custom_icon_paths = [os.path.expanduser("~/.config/qtile/icons")],
|
|
|
|
foreground = colors[0],
|
|
|
|
background = colors[4],
|
|
|
|
padding = 0,
|
|
|
|
scale = 0.7
|
|
|
|
),
|
|
|
|
widget.CurrentLayout(
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[4],
|
|
|
|
padding = 5
|
|
|
|
),
|
|
|
|
widget.TextBox(
|
|
|
|
text = '',
|
|
|
|
background = colors[4],
|
|
|
|
foreground = colors[5],
|
|
|
|
padding = 0,
|
|
|
|
fontsize = 37
|
|
|
|
),
|
|
|
|
widget.Clock(
|
|
|
|
foreground = colors[2],
|
|
|
|
background = colors[5],
|
2021-03-10 22:50:45 -05:00
|
|
|
format = "%A, %B %d - %H:%M "
|
2020-07-18 15:12:14 -04:00
|
|
|
),
|
|
|
|
]
|
|
|
|
return widgets_list
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
* Screens
|
|
|
|
Screen settings for my triple monitor setup.
|
|
|
|
|
|
|
|
#+BEGIN_SRC python
|
|
|
|
def init_widgets_screen1():
|
|
|
|
widgets_screen1 = init_widgets_list()
|
2021-03-12 17:49:30 -05:00
|
|
|
del widgets_screen1[7:8] # Slicing removes unwanted widgets (systray) on Monitors 1,3
|
|
|
|
return widgets_screen1
|
2020-07-18 15:12:14 -04:00
|
|
|
|
|
|
|
def init_widgets_screen2():
|
|
|
|
widgets_screen2 = init_widgets_list()
|
2021-03-12 17:49:30 -05:00
|
|
|
return widgets_screen2 # Monitor 2 will display all widgets in widgets_list
|
2020-07-18 15:12:14 -04:00
|
|
|
|
|
|
|
def init_screens():
|
|
|
|
return [Screen(top=bar.Bar(widgets=init_widgets_screen1(), opacity=1.0, size=20)),
|
|
|
|
Screen(top=bar.Bar(widgets=init_widgets_screen2(), opacity=1.0, size=20)),
|
|
|
|
Screen(top=bar.Bar(widgets=init_widgets_screen1(), opacity=1.0, size=20))]
|
|
|
|
|
|
|
|
if __name__ in ["config", "__main__"]:
|
|
|
|
screens = init_screens()
|
|
|
|
widgets_list = init_widgets_list()
|
|
|
|
widgets_screen1 = init_widgets_screen1()
|
|
|
|
widgets_screen2 = init_widgets_screen2()
|
|
|
|
#+END_SRC
|
|
|
|
|
2020-11-15 07:16:21 -05:00
|
|
|
* Some Important Functions
|
|
|
|
|
|
|
|
#+begin_src python
|
|
|
|
def window_to_prev_group(qtile):
|
|
|
|
if qtile.currentWindow is not None:
|
|
|
|
i = qtile.groups.index(qtile.currentGroup)
|
|
|
|
qtile.currentWindow.togroup(qtile.groups[i - 1].name)
|
|
|
|
|
|
|
|
def window_to_next_group(qtile):
|
|
|
|
if qtile.currentWindow is not None:
|
|
|
|
i = qtile.groups.index(qtile.currentGroup)
|
|
|
|
qtile.currentWindow.togroup(qtile.groups[i + 1].name)
|
|
|
|
|
|
|
|
def window_to_previous_screen(qtile):
|
|
|
|
i = qtile.screens.index(qtile.current_screen)
|
|
|
|
if i != 0:
|
|
|
|
group = qtile.screens[i - 1].group.name
|
|
|
|
qtile.current_window.togroup(group)
|
|
|
|
|
|
|
|
def window_to_next_screen(qtile):
|
|
|
|
i = qtile.screens.index(qtile.current_screen)
|
|
|
|
if i + 1 != len(qtile.screens):
|
|
|
|
group = qtile.screens[i + 1].group.name
|
|
|
|
qtile.current_window.togroup(group)
|
|
|
|
|
|
|
|
def switch_screens(qtile):
|
|
|
|
i = qtile.screens.index(qtile.current_screen)
|
|
|
|
group = qtile.screens[i - 1].group
|
|
|
|
qtile.current_screen.set_group(group)
|
|
|
|
#+end_src
|
|
|
|
|
2020-07-18 15:12:14 -04:00
|
|
|
* Drag floating windows
|
|
|
|
Defining some mousebindings for use with floating windows.
|
|
|
|
|
|
|
|
#+BEGIN_SRC python
|
|
|
|
mouse = [
|
|
|
|
Drag([mod], "Button1", lazy.window.set_position_floating(),
|
|
|
|
start=lazy.window.get_position()),
|
|
|
|
Drag([mod], "Button3", lazy.window.set_size_floating(),
|
|
|
|
start=lazy.window.get_size()),
|
|
|
|
Click([mod], "Button2", lazy.window.bring_to_front())
|
|
|
|
]
|
|
|
|
|
|
|
|
dgroups_key_binder = None
|
|
|
|
dgroups_app_rules = [] # type: List
|
|
|
|
main = None
|
|
|
|
follow_mouse_focus = True
|
|
|
|
bring_front_click = False
|
|
|
|
cursor_warp = False
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
* Floating windows
|
|
|
|
Defining what class of windows should always be floating.
|
|
|
|
|
|
|
|
#+BEGIN_SRC python
|
|
|
|
floating_layout = layout.Floating(float_rules=[
|
2021-03-12 00:12:03 -05:00
|
|
|
# Run the utility of `xprop` to see the wm class and name of an X client.
|
|
|
|
# default_float_rules include: utility, notification, toolbar, splash, dialog,
|
|
|
|
# file_progress, confirm, download and error.
|
|
|
|
,*layout.Floating.default_float_rules,
|
|
|
|
Match(title='Confirmation'), # tastyworks exit box
|
2021-03-12 17:49:30 -05:00
|
|
|
Match(title='Qalculate!'), # qalculate-gtk
|
|
|
|
Match(wm_class='kdenlive'), # kdenlive
|
|
|
|
Match(wm_class='pinentry-gtk-2'), # GPG key password entry
|
2020-07-18 15:12:14 -04:00
|
|
|
])
|
|
|
|
auto_fullscreen = True
|
|
|
|
focus_on_window_activation = "smart"
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
* Startup applications
|
|
|
|
The applications that should autostart every time qtile is started.
|
|
|
|
|
|
|
|
#+BEGIN_SRC python
|
|
|
|
@hook.subscribe.startup_once
|
|
|
|
def start_once():
|
|
|
|
home = os.path.expanduser('~')
|
|
|
|
subprocess.call([home + '/.config/qtile/autostart.sh'])
|
|
|
|
|
|
|
|
# XXX: Gasp! We're lying here. In fact, nobody really uses or cares about this
|
|
|
|
# string besides java UI toolkits; you can see several discussions on the
|
|
|
|
# mailing lists, GitHub issues, and other WM documentation that suggest setting
|
|
|
|
# this string if your java app doesn't work correctly. We may as well just lie
|
|
|
|
# and say that we're a working one by default.
|
|
|
|
#
|
|
|
|
# We choose LG3D to maximize irony: it is a 3D non-reparenting WM written in
|
|
|
|
# java that happens to be on java's whitelist.
|
|
|
|
wmname = "LG3D"
|
|
|
|
#+END_SRC
|