scripts

scripts to make my pc work
Index Commits Files Refs
commit 815001329e73bb5c2ffe49966b45aa9f3285bc39
parent 5aa066a6286427acf26d3251fb8d460de26477a6
Author: klewer-martin <martin.cachari@gmail.com>
Date:   Thu,  4 Feb 2021 16:45:55 -0300

Updated some scripts, some still don't even work lol;

Diffstat:
Aconfigmouses | 9+++++++++
Adisablebluetooth | 3+++
Mdisablemouseaccel | 6++++++
Aenablebluetooth | 3+++
Akeyboardmap | 7+++++++
Axrandrbrightdef | 1+
Dxrandrbrightnessup | 3---
7 files changed, 29 insertions(+), 3 deletions(-)
diff --git a/configmouses b/configmouses
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+
+xinput --set-prop 10 'libinput Accel Profile Enabled' 0, 1
+
+xinput --set-prop 'Logitech Wireless Mouse' 'libinput Accel Profile Enabled' 0, 1
+
+xinput --set-prop 'DLLA6AE:00 06CB:75DD Touchpad' 'libinput Tapping Enabled' 1
+
diff --git a/disablebluetooth b/disablebluetooth
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+systemctl stop bluetooth
diff --git a/disablemouseaccel b/disablemouseaccel
@@ -1,3 +1,9 @@
 #!/bin/bash
 
+
 xinput --set-prop 10 'libinput Accel Profile Enabled' 0, 1
+
+xinput --set-prop 'Logitech Wireless Mouse' 'libinput Accel Profile Enabled' 0, 1
+
+xinput --set-prop 'DLLA6AE:00 06CB:75DD Touchpad' 'libinput Tapping Enabled' 1
+
diff --git a/enablebluetooth b/enablebluetooth
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+systemctl start bluetooth.service
diff --git a/keyboardmap b/keyboardmap
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+# swaps escape with caps-lock and lalt with lsuper
+
+setxkbmap -option caps:swapescape
+
+setxkbmap -option altwin:swap_lalt_lwin
diff --git a/xrandrbrightdef b/xrandrbrightdef
@@ -0,0 +1 @@
+xrandr --output eDP-1 --brightness 1.0
diff --git a/xrandrbrightnessup b/xrandrbrightnessup
@@ -1,3 +0,0 @@
-#!/bin/bash
-
-xrandr --output eDP-1 --brightness 1.0