From c5e8f95ea1e81ddaac1898b36085a5ee17df0c71 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Tue, 22 Feb 2022 18:10:15 -0500 Subject: [PATCH] tabset --- configs/tabset/devices/huion-kamvas-13/name | 1 + .../tabset/devices/huion-kamvas-13/peripherals | 2 ++ .../huion-kamvas-13/profiles/blender.sh | 18 ++++++++++++++++++ .../huion-kamvas-13/profiles/default.sh | 1 + .../huion-kamvas-13/profiles/disabled.sh | 18 ++++++++++++++++++ .../devices/huion-kamvas-13/profiles/gimp.sh | 18 ++++++++++++++++++ configs/zsh/prompt.sh | 1 + install.conf.yaml | 2 ++ 8 files changed, 61 insertions(+) create mode 100755 configs/tabset/devices/huion-kamvas-13/name create mode 100755 configs/tabset/devices/huion-kamvas-13/peripherals create mode 100755 configs/tabset/devices/huion-kamvas-13/profiles/blender.sh create mode 120000 configs/tabset/devices/huion-kamvas-13/profiles/default.sh create mode 100755 configs/tabset/devices/huion-kamvas-13/profiles/disabled.sh create mode 100755 configs/tabset/devices/huion-kamvas-13/profiles/gimp.sh diff --git a/configs/tabset/devices/huion-kamvas-13/name b/configs/tabset/devices/huion-kamvas-13/name new file mode 100755 index 0000000..3ed584f --- /dev/null +++ b/configs/tabset/devices/huion-kamvas-13/name @@ -0,0 +1 @@ +Huion Kamvas 13 \ No newline at end of file diff --git a/configs/tabset/devices/huion-kamvas-13/peripherals b/configs/tabset/devices/huion-kamvas-13/peripherals new file mode 100755 index 0000000..ea78a73 --- /dev/null +++ b/configs/tabset/devices/huion-kamvas-13/peripherals @@ -0,0 +1,2 @@ +Tablet Monitor stylus +Tablet Monitor Pad pad \ No newline at end of file diff --git a/configs/tabset/devices/huion-kamvas-13/profiles/blender.sh b/configs/tabset/devices/huion-kamvas-13/profiles/blender.sh new file mode 100755 index 0000000..2d54072 --- /dev/null +++ b/configs/tabset/devices/huion-kamvas-13/profiles/blender.sh @@ -0,0 +1,18 @@ +# Top three buttons +xsetwacom --set "Tablet Monitor Pad pad" Button 1 "key +ctrl +z -z -ctrl" +xsetwacom --set "Tablet Monitor Pad pad" Button 2 "key +ctrl +tab -tab -ctrl" +xsetwacom --set "Tablet Monitor Pad pad" Button 3 "key x" + +# Middle two buttons +xsetwacom --set "Tablet Monitor Pad pad" Button 8 "key shift" +xsetwacom --set "Tablet Monitor Pad pad" Button 9 "key ctrl" + +# Bottom three buttons +xsetwacom --set "Tablet Monitor Pad pad" Button 10 "key 1" +xsetwacom --set "Tablet Monitor Pad pad" Button 11 "key 3" +xsetwacom --set "Tablet Monitor Pad pad" Button 12 "key 0" + +# Pen buttons +xsetwacom set "Tablet Monitor stylus" "Button" "1" "button +1 " +xsetwacom set "Tablet Monitor stylus" "Button" "2" "button +2 " +xsetwacom set "Tablet Monitor stylus" "Button" "3" "button +3 " \ No newline at end of file diff --git a/configs/tabset/devices/huion-kamvas-13/profiles/default.sh b/configs/tabset/devices/huion-kamvas-13/profiles/default.sh new file mode 120000 index 0000000..b982e46 --- /dev/null +++ b/configs/tabset/devices/huion-kamvas-13/profiles/default.sh @@ -0,0 +1 @@ +blender.sh \ No newline at end of file diff --git a/configs/tabset/devices/huion-kamvas-13/profiles/disabled.sh b/configs/tabset/devices/huion-kamvas-13/profiles/disabled.sh new file mode 100755 index 0000000..46e6ae1 --- /dev/null +++ b/configs/tabset/devices/huion-kamvas-13/profiles/disabled.sh @@ -0,0 +1,18 @@ +# Top three buttons +xsetwacom --set "Tablet Monitor Pad pad" Button 1 "button 0" +xsetwacom --set "Tablet Monitor Pad pad" Button 2 "button 0" +xsetwacom --set "Tablet Monitor Pad pad" Button 3 "button 0" + +# Middle two buttons +xsetwacom --set "Tablet Monitor Pad pad" Button 8 "button 0" +xsetwacom --set "Tablet Monitor Pad pad" Button 9 "button 0" + +# Bottom three buttons +xsetwacom --set "Tablet Monitor Pad pad" Button 10 "button 0" +xsetwacom --set "Tablet Monitor Pad pad" Button 11 "button 0" +xsetwacom --set "Tablet Monitor Pad pad" Button 12 "button 0" + +# Pen buttons +xsetwacom set "Tablet Monitor stylus" "Button" "1" "button +1 " +xsetwacom set "Tablet Monitor stylus" "Button" "2" "button +2 " +xsetwacom set "Tablet Monitor stylus" "Button" "3" "button +3 " diff --git a/configs/tabset/devices/huion-kamvas-13/profiles/gimp.sh b/configs/tabset/devices/huion-kamvas-13/profiles/gimp.sh new file mode 100755 index 0000000..34732ad --- /dev/null +++ b/configs/tabset/devices/huion-kamvas-13/profiles/gimp.sh @@ -0,0 +1,18 @@ +# Top three buttons +xsetwacom --set "Tablet Monitor Pad pad" Button 1 "key +ctrl +z -z -ctrl" +xsetwacom --set "Tablet Monitor Pad pad" Button 2 "key +ctrl +shift +a -a -shift -ctrl" +xsetwacom --set "Tablet Monitor Pad pad" Button 3 "key del" + +# Middle two buttons +xsetwacom --set "Tablet Monitor Pad pad" Button 8 "key shift" +xsetwacom --set "Tablet Monitor Pad pad" Button 9 "key ctrl" + +# Bottom three buttons +xsetwacom --set "Tablet Monitor Pad pad" Button 10 "key +shift +e -e -shift" +xsetwacom --set "Tablet Monitor Pad pad" Button 11 "key p" +xsetwacom --set "Tablet Monitor Pad pad" Button 12 "key f" + +# Pen buttons +xsetwacom set "Tablet Monitor stylus" "Button" "1" "button +1 " +xsetwacom set "Tablet Monitor stylus" "Button" "2" "button +2 " +xsetwacom set "Tablet Monitor stylus" "Button" "3" "button +3 " diff --git a/configs/zsh/prompt.sh b/configs/zsh/prompt.sh index 9ef1dee..cc37d83 100644 --- a/configs/zsh/prompt.sh +++ b/configs/zsh/prompt.sh @@ -1,5 +1,6 @@ # This is some kind of dark magic. # I have no memory of whats going on here, but this has been my config since 2015-ish, so it shall not be touched. +# This was origionally written for crosh, so that may be part of the problem... autoload -U colors && colors NEWLINE=$'\n' diff --git a/install.conf.yaml b/install.conf.yaml index 1ed7a4d..80fa0da 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -9,6 +9,8 @@ ~/.zshrc: path: configs/zsh/.zshrc force: true + ~/.config/tabset/: + path: configs/tabset/** - create: - ~/Downloads