small pixel drawing of a pufferfish dotfiles

Make touchpad amazeballs, add xdg-open wrapper
j3s j3s@c3f.net
Thu, 02 Jan 2020 13:08:54 -0600
commit

a9734558a724406d5578f2bd14b347195f4f58bb

parent

2f131fbbf3066a71104260de1f3f9e78bc2df56a

2 files changed, 15 insertions(+), 0 deletions(-)

jump to
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