add boomer as zoom utility

This commit is contained in:
Guilherme Rugai Freire 2021-12-19 00:29:08 -03:00
parent b14bbaa6af
commit 7abc01633a
No known key found for this signature in database
GPG Key ID: 0F9FE41723A8A297
2 changed files with 6 additions and 0 deletions

4
.config/boomer/config Normal file
View File

@ -0,0 +1,4 @@
min_scale = 0.8
scroll_speed = 2.0
drag_friction = 6.0
scale_friction = 4.0

View File

@ -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"),