Make touchpad amazeballs, add xdg-open wrapper
j3s j3s@c3f.net
Thu, 02 Jan 2020 13:08:54 -0600
2 files changed,
15 insertions(+),
0 deletions(-)
M
.config/sway/config
→
.config/sway/config
@@ -65,6 +65,9 @@ }
input "1739:30383:CUST0001:00_06CB:76AF_Touchpad" { tap enabled + tap_button_map lrm + dwt disabled + click_method clickfinger } # # You can get the names of your inputs by running: swaymsg -t get_inputs
A
bin/xdg-open
@@ -0,0 +1,12 @@
+#!/bin/sh +case "${1%%:*}" in + http|https|*.pdf) + exec qutebrowser "$1" + ;; + mailto) + exec aerc "$1" + ;; + *) + exec /usr/bin/xdg-open "$@" + ;; +esac