From 8d4ec82673bdc8425776d9801ed0f79b2821ed69 Mon Sep 17 00:00:00 2001 From: The-Repo-Club Date: Tue, 18 Oct 2022 17:34:35 +0100 Subject: [PATCH] Qtile CheetSheet --- qtile/.config/qtile/scripts/qtile-cheat | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/qtile/.config/qtile/scripts/qtile-cheat b/qtile/.config/qtile/scripts/qtile-cheat index fc158a035..1bc1981da 100755 --- a/qtile/.config/qtile/scripts/qtile-cheat +++ b/qtile/.config/qtile/scripts/qtile-cheat @@ -66,19 +66,22 @@ class WMCheatWindow(Gtk.ApplicationWindow): Gtk.CellRendererText(), text=1) description_column.set_min_width(300) + description_column.set_max_width(500) tree.append_column(description_column) keybind_column = Gtk.TreeViewColumn("Keybind", Gtk.CellRendererText(), text=2) keybind_column.set_min_width(300) + keybind_column.set_max_width(500) tree.append_column(keybind_column) - command_column = Gtk.TreeViewColumn("Command", - Gtk.CellRendererText(), - text=3) - command_column.set_min_width(300) - tree.append_column(command_column) + # command_column = Gtk.TreeViewColumn("Command", + # Gtk.CellRendererText(), + # text=3) + # command_column.set_min_width(300) + # command_column.set_max_width(500) + # tree.append_column(command_column) scrolled = Gtk.ScrolledWindow() scrolled.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC)