blob: e5c44dee7430c2d8244db8bbe9cbd9b270788f9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
# touchpad setup
xinput set-prop "ELAN0718:00 04F3:30FD Touchpad" "libinput Tapping Enabled" 1 &
xinput set-prop "ELAN0718:00 04F3:30FD Touchpad" "libinput Natural Scrolling Enabled" 1 &
# mouse setup
xinput set-prop "pointer:Logitech Wireless Mouse" "libinput Natural Scrolling Enabled" 1 &
# makes gnome-keyring work
bus-update-activation-environment --all &
# turn on the red danger light on the side of the laptop
# so i know it's turned on without opening the lid
brightnessctl --device hp::hddprotect set 100% &
# setup stuff
screensetup.sh &
switch-keyboard-layout &
nitrogen --restore & # nitrogen --random Downloads/walls/mocha --set-zoom-fill
picom &
polydoro -d &
polystart &
nm-applet &
blueman-applet &
flameshot &
# udiskie &
# deadd-notification-center &
# lxpolkit &
# emacs --daemon &
# virtual_mic.sh &
# glava -dm radial &
|