my dotz
0

Configure Feed

Select the types of activity you want to include in your feed.

Make touchpad amazeballs, add xdg-open wrapper

+15
+3
.config/sway/config
··· 65 65 66 66 input "1739:30383:CUST0001:00_06CB:76AF_Touchpad" { 67 67 tap enabled 68 + tap_button_map lrm 69 + dwt disabled 70 + click_method clickfinger 68 71 } 69 72 # 70 73 # You can get the names of your inputs by running: swaymsg -t get_inputs
+12
bin/xdg-open
··· 1 + #!/bin/sh 2 + case "${1%%:*}" in 3 + http|https|*.pdf) 4 + exec qutebrowser "$1" 5 + ;; 6 + mailto) 7 + exec aerc "$1" 8 + ;; 9 + *) 10 + exec /usr/bin/xdg-open "$@" 11 + ;; 12 + esac