dotfiles/laptop/.aliases.laptop

10 lines
392 B
Plaintext
Raw Normal View History

2021-05-23 03:00:44 +02:00
#!/usr/bin/env bash
#TODO: Fix dynamic disable and enable (16 was a one time occurence)
alias disable-touch="xinput set-prop 16 'Device Enabled' 0"
alias enable-touch="xinput set-prop 16 'Device Enabled' 1"
2021-05-28 00:15:28 +02:00
alias singleScreen="xrandr --output DP-3 --off"
2021-05-23 03:00:44 +02:00
alias doubleScreen="xrandr --output DP-3 --mode 1920x1080"
2021-05-28 00:15:28 +02:00
alias extendScreen="xrandr --output DP-3 --mode 1920x1080 --right-of eDP-1"