Configure Surface Touchpad by default
This commit is contained in:
parent
a3421d4e37
commit
1cfd450bd0
3 changed files with 32 additions and 0 deletions
scripts/Common/Software/KDE
19
scripts/Common/Software/KDE/input.fish
Normal file
19
scripts/Common/Software/KDE/input.fish
Normal file
|
@ -0,0 +1,19 @@
|
|||
function addInputConfig -a vendorID productID name
|
||||
set -l file /etc/xdg/kcminputrc
|
||||
set -l statements $argv[4..]
|
||||
|
||||
if [ -z "$statements" ]
|
||||
set statements (cat)
|
||||
end
|
||||
|
||||
if not cat $file | grep "\\[$name\\]" > /dev/null 2>&1
|
||||
begin
|
||||
printf %s\n \
|
||||
(if [ -f $file ] && [ -n (cat $file) ]
|
||||
echo ""
|
||||
end) \
|
||||
"[Libinput][$vendorID][$productID][$name]" \
|
||||
"$statements"
|
||||
end | sudo tee $file > /dev/null
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue