From 7abc01633a9914295b5b373c473cfd7a3e183f06 Mon Sep 17 00:00:00 2001 From: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Date: Sun, 19 Dec 2021 00:29:08 -0300 Subject: [PATCH] add boomer as zoom utility --- .config/boomer/config | 4 ++++ .config/qtile/config.py | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 .config/boomer/config diff --git a/.config/boomer/config b/.config/boomer/config new file mode 100644 index 0000000..cbfcc4b --- /dev/null +++ b/.config/boomer/config @@ -0,0 +1,4 @@ +min_scale = 0.8 +scroll_speed = 2.0 +drag_friction = 6.0 +scale_friction = 4.0 diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 5eba221..0842a5b 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -24,6 +24,7 @@ FILE_MANAGER = "pcmanfm --no-desktop" CLIPBOARD_MANAGER = "rofi -modi \"clipboard:greenclip print\" -show clipboard -run-command '{cmd}'" SCREENSHOT = "gnome-screenshot" SCREENSHOT_UTILITY = "gnome-screenshot -i" +ZOOM_UTILITY = "boomer" CALCULATOR= "gnome-calculator" POWER_MENU = os.path.expanduser( "~/.scripts/bin/simple-power-menu" @@ -97,6 +98,7 @@ keys = [ Key([MOD], "BackSpace", lazy.spawn(POWER_MENU), desc="Open power menu"), Key([], "Print", lazy.spawn(SCREENSHOT), desc="Take a screenshot of all the screens"), Key([MOD], "Print", lazy.spawn(SCREENSHOT_UTILITY), desc="Open screenshot utility"), + Key([MOD], "equal", lazy.spawn(ZOOM_UTILITY), desc="Open zoom utility"), Key([MOD, "control"], "b", lazy.spawn(BLUETOOTH_MANAGER), desc="Open bluetooth manager"), # Clipboard Key([MOD, "shift"], "c", lazy.spawn(CLIPBOARD_MANAGER), desc="Launch clipboard manager"),