From 2834551ffb3c5e9cbf9885db915a2ff359a19c01 Mon Sep 17 00:00:00 2001 From: Ron Waldon-Howe Date: Sun, 31 Dec 2023 05:00:53 +1100 Subject: [PATCH] fix: use `cosmic-term` and `cosmic-screenshot` by default --- config.ron | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config.ron b/config.ron index 5582c50b..9ab2df56 100644 --- a/config.ron +++ b/config.ron @@ -72,13 +72,15 @@ (modifiers: [Super], key: "b"): Spawn("xdg-open http://"), (modifiers: [Super], key: "f"): Spawn("xdg-open ~"), //TODO: ability to select default terminal - (modifiers: [Super], key: "t"): Spawn("gnome-terminal"), + (modifiers: [Super], key: "t"): Spawn("cosmic-term"), (modifiers: [Super], key: "a"): Spawn("cosmic-app-library"), (modifiers: [Super], key: "w"): Spawn("cosmic-workspaces"), (modifiers: [Super], key: "slash"): Spawn("cosmic-launcher"), (modifiers: [Super]): Spawn("cosmic-launcher"), + (modifiers: [], key: "Print"): Spawn("cosmic-screenshot"), + (modifiers: [], key: "XF86AudioRaiseVolume"): Spawn("amixer sset Master 5%+"), (modifiers: [], key: "XF86AudioLowerVolume"): Spawn("amixer sset Master 5%-"), (modifiers: [], key: "XF86AudioMute"): Spawn("amixer sset Master toggle"),