Various minor improvements and cleanup

This commit is contained in:
Lauren Lagarde 2025-03-30 19:02:08 -05:00
parent 00ab2f5e2d
commit fe538d9043
3 changed files with 18 additions and 7 deletions

View file

@ -1,4 +1,4 @@
{ ... }: {
{ pkgs, ... }: {
home.packages = with pkgs; [
alsa-utils
];
@ -37,15 +37,30 @@
i3-msg restart
'';
};
"precision/backward" = {
executable = true;
text = ''
xrandr \
--output eDP-1 --mode 1920x1200 \
--output DP-2 --mode 3840x2160 --rate 30 --primary --right-of eDP-1
i3-msg restart
'';
};
"precision/standalone" = {
executable = true;
text = ''
xrandr \
--output eDP-1 --mode 1920x1200 --primary \
--output DP-1 --off \
--output DP-2 --off \
--output DP-3 --off \
--output DP-4 --off \
--output DP-5 --off \
--output DP-2-1 --off \
--output DP-2-2 --off \
--output DP-2-3 --off \
--output DP-4-1 --off \
--output DP-4-2 --off \
--output DP-4-3 --off
i3-msg restart
'';