mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-22 11:00:27 +10:00
599 lines
24 KiB
Python
599 lines
24 KiB
Python
# Copyright (c) 2010 Aldo Cortesi
|
|
# Copyright (c) 2010, 2014 dequis
|
|
# Copyright (c) 2012 Randall Ma
|
|
# Copyright (c) 2012-2014 Tycho Andersen
|
|
# Copyright (c) 2012 Craig Barnes
|
|
# Copyright (c) 2013 horsik
|
|
# Copyright (c) 2013 Tao Sauvage
|
|
#
|
|
# 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.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
|
|
import os
|
|
import subprocess
|
|
from libqtile import bar, extension, hook, layout, qtile, widget
|
|
from libqtile.config import Click, Drag, Group, Key, KeyChord, Match, Screen
|
|
from libqtile.lazy import lazy
|
|
# from libqtile.utils import guess_terminal
|
|
|
|
# Make sure 'qtile-extras' is installed or this config will not work.
|
|
from qtile_extras import widget
|
|
#from qtile_extras.widget import StatusNotifier
|
|
from qtile_extras.widget.decorations import BorderDecoration
|
|
|
|
# Allows you to input a name when adding treetab section.
|
|
@lazy.layout.function
|
|
def add_treetab_section(layout):
|
|
prompt = qtile.widgets_map["prompt"]
|
|
prompt.start_input("Section name: ", layout.cmd_add_section)
|
|
|
|
mod = "mod4" # Sets mod key to SUPER/WINDOWS
|
|
myTerm = "alacritty" # My terminal of choice
|
|
myBrowser = "qutebrowser" # My browser of choice
|
|
myEmacs = "emacsclient -c -a 'emacs' " # The space at the end is IMPORTANT!
|
|
|
|
# A list of available commands that can be bound to keys can be found
|
|
# at https://docs.qtile.org/en/latest/manual/config/lazy.html
|
|
keys = [
|
|
# The essentials
|
|
Key([mod], "Return", lazy.spawn(myTerm), desc="Terminal"),
|
|
Key([mod, "shift"], "Return", lazy.spawn("dm-run"), desc='Run Launcher'),
|
|
Key([mod], "b", lazy.spawn(myBrowser), desc='Qutebrowser'),
|
|
Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"),
|
|
Key([mod, "shift"], "c", lazy.window.kill(), desc="Kill focused window"),
|
|
Key([mod, "shift"], "r", lazy.reload_config(), desc="Reload the config"),
|
|
Key([mod, "shift"], "q", lazy.spawn("dm-logout"), desc="Logout menu"),
|
|
Key([mod], "r", lazy.spawncmd(), desc="Spawn a command using a prompt widget"),
|
|
|
|
# Switch between windows
|
|
# Some layouts like 'monadtall' only need to use j/k to move
|
|
# through the stack, but other layouts like 'columns' will
|
|
# require all four directions h/j/k/l to move around.
|
|
Key([mod], "h", lazy.layout.left(), desc="Move focus to left"),
|
|
Key([mod], "l", lazy.layout.right(), desc="Move focus to right"),
|
|
Key([mod], "j", lazy.layout.down(), desc="Move focus down"),
|
|
Key([mod], "k", lazy.layout.up(), desc="Move focus up"),
|
|
Key([mod], "space", lazy.layout.next(), desc="Move window focus to other window"),
|
|
|
|
# Move windows between left/right columns or move up/down in current stack.
|
|
# Moving out of range in Columns layout will create new column.
|
|
Key([mod, "shift"], "h",
|
|
lazy.layout.shuffle_left(),
|
|
lazy.layout.move_left().when(layout=["treetab"]),
|
|
desc="Move window to the left/move tab left in treetab"),
|
|
|
|
Key([mod, "shift"], "l",
|
|
lazy.layout.shuffle_right(),
|
|
lazy.layout.move_right().when(layout=["treetab"]),
|
|
desc="Move window to the right/move tab right in treetab"),
|
|
|
|
Key([mod, "shift"], "j",
|
|
lazy.layout.shuffle_down(),
|
|
lazy.layout.section_down().when(layout=["treetab"]),
|
|
desc="Move window down/move down a section in treetab"
|
|
),
|
|
Key([mod, "shift"], "k",
|
|
lazy.layout.shuffle_up(),
|
|
lazy.layout.section_up().when(layout=["treetab"]),
|
|
desc="Move window downup/move up a section in treetab"
|
|
),
|
|
|
|
# Toggle between split and unsplit sides of stack.
|
|
# Split = all windows displayed
|
|
# Unsplit = 1 window displayed, like Max layout, but still with
|
|
# multiple stack panes
|
|
Key([mod, "shift"], "space", lazy.layout.toggle_split(), desc="Toggle between split and unsplit sides of stack"),
|
|
|
|
# Treetab prompt
|
|
Key([mod, "shift"], "a", add_treetab_section, desc='Prompt to add new section in treetab'),
|
|
|
|
# Grow/shrink windows left/right.
|
|
# This is mainly for the 'monadtall' and 'monadwide' layouts
|
|
# although it does also work in the 'bsp' and 'columns' layouts.
|
|
Key([mod], "equal",
|
|
lazy.layout.grow_left().when(layout=["bsp", "columns"]),
|
|
lazy.layout.grow().when(layout=["monadtall", "monadwide"]),
|
|
desc="Grow window to the left"
|
|
),
|
|
Key([mod], "minus",
|
|
lazy.layout.grow_right().when(layout=["bsp", "columns"]),
|
|
lazy.layout.shrink().when(layout=["monadtall", "monadwide"]),
|
|
desc="Grow window to the left"
|
|
),
|
|
|
|
# Grow windows up, down, left, right. Only works in certain layouts.
|
|
# Works in 'bsp' and 'columns' layout.
|
|
Key([mod, "control"], "h", lazy.layout.grow_left(), desc="Grow window to the left"),
|
|
Key([mod, "control"], "l", lazy.layout.grow_right(), desc="Grow window to the right"),
|
|
Key([mod, "control"], "j", lazy.layout.grow_down(), desc="Grow window down"),
|
|
Key([mod, "control"], "k", lazy.layout.grow_up(), desc="Grow window up"),
|
|
Key([mod], "n", lazy.layout.normalize(), desc="Reset all window sizes"),
|
|
Key([mod], "m", lazy.layout.maximize(), desc='Toggle between min and max sizes'),
|
|
Key([mod], "t", lazy.window.toggle_floating(), desc='toggle floating'),
|
|
Key([mod], "f", lazy.window.toggle_fullscreen(), desc='toggle fullscreen'),
|
|
|
|
# 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'),
|
|
|
|
# An example of using the extension 'CommandSet' to give
|
|
# a list of commands that can be executed in dmenu style.
|
|
Key([mod], 'z', lazy.run_extension(extension.CommandSet(
|
|
commands={
|
|
'play/pause': '[ $(mocp -i | wc -l) -lt 2 ] && mocp -p || mocp -G',
|
|
'next': 'mocp -f',
|
|
'previous': 'mocp -r',
|
|
'quit': 'mocp -x',
|
|
'open': 'urxvt -e mocp',
|
|
'shuffle': 'mocp -t shuffle',
|
|
'repeat': 'mocp -t repeat',
|
|
},
|
|
pre_commands=['[ $(mocp -i | wc -l) -lt 1 ] && mocp -S'],
|
|
))),
|
|
|
|
# Emacs programs launched using the key chord CTRL+e followed by 'key'
|
|
KeyChord([mod],"e", [
|
|
Key([], "e", lazy.spawn(myEmacs), desc='Emacs Dashboard'),
|
|
Key([], "a", lazy.spawn(myEmacs + "--eval '(emms-play-directory-tree \"~/Music/\")'"), desc='Emacs EMMS'),
|
|
Key([], "b", lazy.spawn(myEmacs + "--eval '(ibuffer)'"), desc='Emacs Ibuffer'),
|
|
Key([], "d", lazy.spawn(myEmacs + "--eval '(dired nil)'"), desc='Emacs Dired'),
|
|
Key([], "i", lazy.spawn(myEmacs + "--eval '(erc)'"), desc='Emacs ERC'),
|
|
Key([], "n", lazy.spawn(myEmacs + "--eval '(elfeed)'"), desc='Emacs Elfeed'),
|
|
Key([], "s", lazy.spawn(myEmacs + "--eval '(eshell)'"), desc='Emacs Eshell'),
|
|
Key([], "v", lazy.spawn(myEmacs + "--eval '(vterm)'"), desc='Emacs Vterm'),
|
|
Key([], "w", lazy.spawn(myEmacs + "--eval '(eww \"distro.tube\")'"), desc='Emacs EWW')
|
|
]),
|
|
# Dmenu scripts launched using the key chord SUPER+p followed by 'key'
|
|
KeyChord([mod], "p", [
|
|
Key([], "h", lazy.spawn("dm-hub"), desc='List all dmscripts'),
|
|
Key([], "a", lazy.spawn("dm-sounds"), desc='Choose ambient sound'),
|
|
Key([], "b", lazy.spawn("dm-setbg"), desc='Set background'),
|
|
Key([], "c", lazy.spawn("dtos-colorscheme"), desc='Choose color scheme'),
|
|
Key([], "e", lazy.spawn("dm-confedit"), desc='Choose a config file to edit'),
|
|
Key([], "i", lazy.spawn("dm-maim"), desc='Take a screenshot'),
|
|
Key([], "k", lazy.spawn("dm-kill"), desc='Kill processes '),
|
|
Key([], "m", lazy.spawn("dm-man"), desc='View manpages'),
|
|
Key([], "n", lazy.spawn("dm-note"), desc='Store and copy notes'),
|
|
Key([], "o", lazy.spawn("dm-bookman"), desc='Browser bookmarks'),
|
|
Key([], "p", lazy.spawn("passmenu -p \"Pass: \""), desc='Logout menu'),
|
|
Key([], "q", lazy.spawn("dm-logout"), desc='Logout menu'),
|
|
Key([], "r", lazy.spawn("dm-radio"), desc='Listen to online radio'),
|
|
Key([], "s", lazy.spawn("dm-websearch"), desc='Search various engines'),
|
|
Key([], "t", lazy.spawn("dm-translate"), desc='Translate text')
|
|
])
|
|
|
|
]
|
|
groups = []
|
|
group_names = ["1", "2", "3", "4", "5", "6", "7", "8", "9",]
|
|
|
|
#group_labels = ["DEV", "WWW", "SYS", "DOC", "VBOX", "CHAT", "MUS", "VID", "GFX",]
|
|
group_labels = ["1", "2", "3", "4", "5", "6", "7", "8", "9",]
|
|
#group_labels = ["", "", "", "", "", "", "", "", "",]
|
|
|
|
|
|
group_layouts = ["monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall"]
|
|
|
|
for i in range(len(group_names)):
|
|
groups.append(
|
|
Group(
|
|
name=group_names[i],
|
|
layout=group_layouts[i].lower(),
|
|
label=group_labels[i],
|
|
))
|
|
|
|
for i in groups:
|
|
keys.extend(
|
|
[
|
|
# mod1 + letter of group = switch to group
|
|
Key(
|
|
[mod],
|
|
i.name,
|
|
lazy.group[i.name].toscreen(),
|
|
desc="Switch to group {}".format(i.name),
|
|
),
|
|
# mod1 + shift + letter of group = move focused window to group
|
|
Key(
|
|
[mod, "shift"],
|
|
i.name,
|
|
lazy.window.togroup(i.name, switch_group=False),
|
|
desc="Move focused window to group {}".format(i.name),
|
|
),
|
|
]
|
|
)
|
|
|
|
# If using transparency, make sure you add (background="#00000000") to 'Screen' line(s).
|
|
# Then, you can use RGBA color codes to add transparency to the colors below.
|
|
# For ex: colors = [["#282c34ee", "#282c34dd"], ...
|
|
|
|
doom_one = [
|
|
["#282c34", "#282c34"], # bg
|
|
["#bbc2cf", "#bbc2cf"], # fg
|
|
["#1c1f24", "#1c1f24"], # color01
|
|
["#ff6c6b", "#ff6c6b"], # color02
|
|
["#98be65", "#98be65"], # color03
|
|
["#da8548", "#da8548"], # color04
|
|
["#51afef", "#51afef"], # color05
|
|
["#c678dd", "#c678dd"], # color06
|
|
["#46d9ff", "#46d9ff"] # color15
|
|
]
|
|
|
|
dracula = [
|
|
["#282a36", "#282a36"], # bg
|
|
["#f8f8f2", "#f8f8f2"], # fg
|
|
["#000000", "#000000"], # color01
|
|
["#ff5555", "#ff5555"], # color02
|
|
["#50fa7b", "#50fa7b"], # color03
|
|
["#f1fa8c", "#f1fa8c"], # color04
|
|
["#bd93f9", "#bd93f9"], # color05
|
|
["#ff79c6", "#ff79c6"], # color06
|
|
["#9aedfe", "#9aedfe"] # color15
|
|
]
|
|
|
|
gruvbox_dark = [
|
|
["#282828", "#282828"], # bg
|
|
["#ebdbb2", "#ebdbb2"], # fg
|
|
["#000000", "#000000"], # color01
|
|
["#fb4934", "#fb4934"], # color02
|
|
["#98971a", "#98971a"], # color03
|
|
["#d79921", "#d79921"], # color04
|
|
["#83a598", "#83a598"], # color05
|
|
["#d3869b", "#d3869b"], # color06
|
|
["#b8bb26", "#b8bb26"], # color11
|
|
]
|
|
monokai_pro = [
|
|
["#2D2A2E", "#2D2A2E"], # bg
|
|
["#FCFCFA", "#FCFCFA"], # fg
|
|
["#403E41", "#403E41"], # color01
|
|
["#FF6188", "#FF6188"], # color02
|
|
["#A9DC76", "#A9DC76"], # color03
|
|
["#FFD866", "#FFD866"], # color04
|
|
["#FC9867", "#FC9867"], # color05
|
|
["#AB9DF2", "#AB9DF2"], # color06
|
|
["#78DCE8", "#78DCE8"] # color07
|
|
]
|
|
|
|
nord = [
|
|
["#2E3440", "#2E3440"], # bg
|
|
["#D8DEE9", "#D8DEE9"], # fg
|
|
["#3B4252", "#3B4252"], # color01
|
|
["#BF616A", "#BF616A"], # color02
|
|
["#A3BE8C", "#A3BE8C"], # color03
|
|
["#EBCB8B", "#EBCB8B"], # color04
|
|
["#81A1C1", "#81A1C1"], # color05
|
|
["#B48EAD", "#B48EAD"], # color06
|
|
["#88C0D0", "#88C0D0"] # color07
|
|
]
|
|
|
|
oceanic_next = [
|
|
["#1b2b34", "#1b2b34"], # bg
|
|
["#d8dee9", "#d8dee9"], # fg
|
|
["#29414f", "#29414f"], # color01
|
|
["#ec5f67", "#ec5f67"], # color02
|
|
["#99c794", "#99c794"], # color03
|
|
["#fac863", "#fac863"], # color04
|
|
["#6699cc", "#6699cc"], # color05
|
|
["#c594c5", "#c594c5"], # color06
|
|
["#5fb3b3", "#5fb3b3"] # color07
|
|
]
|
|
|
|
|
|
colors = doom_one
|
|
|
|
layout_theme = {"border_width": 2,
|
|
"margin": 8,
|
|
"border_focus": colors[8],
|
|
"border_normal": colors[0]
|
|
}
|
|
|
|
layouts = [
|
|
#layout.Bsp(**layout_theme),
|
|
#layout.Floating(**layout_theme)
|
|
#layout.RatioTile(**layout_theme),
|
|
#layout.Tile(shift_windows=True, **layout_theme),
|
|
#layout.VerticalTile(**layout_theme),
|
|
#layout.Matrix(**layout_theme),
|
|
layout.MonadTall(**layout_theme),
|
|
#layout.MonadWide(**layout_theme),
|
|
layout.Max(
|
|
border_width = 0,
|
|
margin = 0,
|
|
),
|
|
layout.Stack(**layout_theme, num_stacks=2),
|
|
layout.Columns(**layout_theme),
|
|
layout.TreeTab(
|
|
font = "Ubuntu Bold",
|
|
fontsize = 11,
|
|
border_width = 0,
|
|
bg_color = colors[0],
|
|
active_bg = colors[8],
|
|
active_fg = colors[1],
|
|
inactive_bg = colors[1],
|
|
inactive_fg = colors[2],
|
|
padding_left = 8,
|
|
padding_x = 8,
|
|
padding_y = 6,
|
|
sections = ["ONE", "TWO", "THREE"],
|
|
section_fontsize = 10,
|
|
section_fg = colors[2],
|
|
section_top = 15,
|
|
section_bottom = 15,
|
|
level_shift = 8,
|
|
vspace = 3,
|
|
panel_width = 240
|
|
),
|
|
layout.Zoomy(**layout_theme),
|
|
]
|
|
|
|
widget_defaults = dict(
|
|
font="Ubuntu Bold",
|
|
fontsize = 12,
|
|
padding = 5,
|
|
background=colors[0]
|
|
)
|
|
extension_defaults = widget_defaults.copy()
|
|
|
|
def init_widgets_list():
|
|
widgets_list = [
|
|
widget.Image(
|
|
filename = "~/.config/qtile/icons/python-white.png",
|
|
scale = "False",
|
|
mouse_callbacks = {'Button1': lambda: qtile.cmd_spawn(myTerm)},
|
|
),
|
|
widget.Prompt(
|
|
font = "Ubuntu Mono",
|
|
fontsize=14,
|
|
foreground = colors[1]
|
|
),
|
|
widget.GroupBox(
|
|
font = "Ubuntu Mono Bold",
|
|
fontsize = 10,
|
|
margin_y = 3,
|
|
margin_x = 4,
|
|
padding_y = 2,
|
|
padding_x = 3,
|
|
borderwidth = 3,
|
|
active = colors[1],
|
|
inactive = colors[6],
|
|
rounded = False,
|
|
highlight_color = colors[2],
|
|
highlight_method = "line",
|
|
this_current_screen_border = colors[7],
|
|
this_screen_border = colors [4],
|
|
other_current_screen_border = colors[7],
|
|
other_screen_border = colors[4],
|
|
#foreground = colors[1]
|
|
),
|
|
widget.TextBox(
|
|
text = '|',
|
|
font = "Ubuntu Mono",
|
|
foreground = colors[1],
|
|
padding = 2,
|
|
fontsize = 14
|
|
),
|
|
widget.CurrentLayoutIcon(
|
|
# custom_icon_paths = [os.path.expanduser("~/.config/qtile/icons")],
|
|
foreground = colors[1],
|
|
padding = 0,
|
|
scale = 0.7
|
|
),
|
|
widget.CurrentLayout(
|
|
foreground = colors[1],
|
|
padding = 5
|
|
),
|
|
widget.TextBox(
|
|
text = '|',
|
|
font = "Ubuntu Mono",
|
|
foreground = colors[1],
|
|
padding = 2,
|
|
fontsize = 14
|
|
),
|
|
widget.WindowName(
|
|
foreground = colors[6],
|
|
max_chars = 40
|
|
),
|
|
widget.GenPollText(
|
|
update_interval = 300,
|
|
func = lambda: subprocess.check_output("printf $(uname -r)", shell=True, text=True),
|
|
foreground = colors[3],
|
|
fmt = 'Kernel: {}',
|
|
decorations=[
|
|
BorderDecoration(
|
|
colour = colors[3],
|
|
border_width = [0, 0, 2, 0],
|
|
padding_x = 5,
|
|
padding_y = None,
|
|
)
|
|
],
|
|
),
|
|
|
|
widget.Net(
|
|
interface = "enp5s0",
|
|
prefix='M',
|
|
format = 'Net: {down} ↓↑ {up}',
|
|
foreground = colors[4],
|
|
decorations=[
|
|
BorderDecoration(
|
|
colour = colors[4],
|
|
border_width = [0, 0, 2, 0],
|
|
padding_x = 5,
|
|
padding_y = None,
|
|
)
|
|
],
|
|
),
|
|
widget.Memory(
|
|
foreground = colors[8],
|
|
mouse_callbacks = {'Button1': lambda: qtile.cmd_spawn(myTerm + ' -e htop')},
|
|
format = '{MemUsed: .0f}{mm}',
|
|
fmt = '✇ Mem: {} used',
|
|
decorations=[
|
|
BorderDecoration(
|
|
colour = colors[8],
|
|
border_width = [0, 0, 2, 0],
|
|
padding_x = 5,
|
|
padding_y = None,
|
|
)
|
|
],
|
|
),
|
|
widget.DF(
|
|
update_interval = 60,
|
|
foreground = colors[5],
|
|
mouse_callbacks = {'Button1': lambda: qtile.cmd_spawn(myTerm + ' -e df')},
|
|
partition = '/',
|
|
#format = '[{p}] {uf}{m} ({r:.0f}%)',
|
|
format = '{uf}{m} free',
|
|
fmt = '✇ Disk: {}',
|
|
visible_on_warn = False,
|
|
decorations=[
|
|
BorderDecoration(
|
|
colour = colors[5],
|
|
border_width = [0, 0, 2, 0],
|
|
padding_x = 5,
|
|
padding_y = None,
|
|
)
|
|
],
|
|
),
|
|
widget.Volume(
|
|
foreground = colors[7],
|
|
fmt = '🕫 Vol: {}',
|
|
decorations=[
|
|
BorderDecoration(
|
|
colour = colors[7],
|
|
border_width = [0, 0, 2, 0],
|
|
padding_x = 5,
|
|
padding_y = None,
|
|
)
|
|
],
|
|
),
|
|
widget.KeyboardLayout(
|
|
foreground = colors[8],
|
|
fmt = '⌨ Kbd: {}',
|
|
decorations=[
|
|
BorderDecoration(
|
|
colour = colors[8],
|
|
border_width = [0, 0, 2, 0],
|
|
padding_x = 5,
|
|
padding_y = None,
|
|
)
|
|
],
|
|
),
|
|
widget.Clock(
|
|
foreground = colors[6],
|
|
format = "⏱ %a, %b %d - %H:%M",
|
|
decorations=[
|
|
BorderDecoration(
|
|
colour = colors[6],
|
|
border_width = [0, 0, 2, 0],
|
|
padding_x = 5,
|
|
padding_y = None,
|
|
)
|
|
],
|
|
),
|
|
widget.Systray(
|
|
padding = 4
|
|
),
|
|
widget.Spacer(
|
|
length = 8,
|
|
),
|
|
|
|
]
|
|
return widgets_list
|
|
|
|
# I use 3 monitors which means that I need 3 bars, but some widgets (such as the systray)
|
|
# can only have one instance, otherwise it will crash. So I define the follow two lists.
|
|
# The first one creates a bar with every widget EXCEPT index 15 and 16 (systray and spacer).
|
|
# The second one creates a bar with all widgets.
|
|
|
|
def init_widgets_screen1():
|
|
widgets_screen1 = init_widgets_list()
|
|
del widgets_screen1[15:16] # Removes widgets 15 and 16 for bars on Monitors 1 + 3
|
|
return widgets_screen1
|
|
|
|
def init_widgets_screen2():
|
|
widgets_screen2 = init_widgets_list()
|
|
return widgets_screen2 # Monitor 2 will display ALL widgets in widgets_list
|
|
|
|
# For adding transparency to your bar, add (background="#00000000") to the "Screen" line(s)
|
|
# For ex: Screen(top=bar.Bar(widgets=init_widgets_screen2(), background="#00000000", size=24)),
|
|
|
|
def init_screens():
|
|
return [Screen(top=bar.Bar(widgets=init_widgets_screen1(), size=24)),
|
|
Screen(top=bar.Bar(widgets=init_widgets_screen2(), size=24)),
|
|
Screen(top=bar.Bar(widgets=init_widgets_screen1(), size=24))]
|
|
|
|
if __name__ in ["config", "__main__"]:
|
|
screens = init_screens()
|
|
widgets_list = init_widgets_list()
|
|
widgets_screen1 = init_widgets_screen1()
|
|
widgets_screen2 = init_widgets_screen2()
|
|
|
|
# Drag floating layouts.
|
|
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
|
|
follow_mouse_focus = True
|
|
bring_front_click = False
|
|
cursor_warp = False
|
|
floating_layout = layout.Floating(
|
|
border_focus=colors[8],
|
|
border_width=2,
|
|
float_rules=[
|
|
# Run the utility of `xprop` to see the wm class and name of an X client.
|
|
*layout.Floating.default_float_rules,
|
|
Match(wm_class="confirmreset"), # gitk
|
|
Match(wm_class="makebranch"), # gitk
|
|
Match(wm_class="maketag"), # gitk
|
|
Match(wm_class="ssh-askpass"), # ssh-askpass
|
|
Match(title="branchdialog"), # gitk
|
|
Match(title='Confirmation'), # tastyworks exit box
|
|
Match(title='Qalculate!'), # qalculate-gtk
|
|
Match(wm_class='kdenlive'), # kdenlive
|
|
Match(wm_class='pinentry-gtk-2'), # GPG key password entry
|
|
Match(title="pinentry"), # GPG key password entry
|
|
]
|
|
)
|
|
auto_fullscreen = True
|
|
focus_on_window_activation = "smart"
|
|
reconfigure_screens = True
|
|
|
|
# If things like steam games want to auto-minimize themselves when losing
|
|
# focus, should we respect this or not?
|
|
auto_minimize = True
|
|
|
|
# When using the Wayland backend, this can be used to configure input devices.
|
|
wl_input_rules = None
|
|
|
|
@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"
|