Moved files to subdirectory in preparation for merge
This commit is contained in:
parent
66fecea1e2
commit
b551028f5c
30 changed files with 0 additions and 0 deletions
43
modules/mlaga97-home-manager/systems/latitude-e5591.nix
Normal file
43
modules/mlaga97-home-manager/systems/latitude-e5591.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ ... }: {
|
||||
home.file = {
|
||||
"latitude/tv" = {
|
||||
executable = true;
|
||||
text = ''
|
||||
xrandr \
|
||||
--output eDP-1 --mode 1920x1080 --primary \
|
||||
--output DP-2-2 --mode 1920x1080
|
||||
'';
|
||||
};
|
||||
"latitude/desk" = {
|
||||
executable = true;
|
||||
text = ''
|
||||
xrandr \
|
||||
--output eDP-1 --off \
|
||||
--output DP-2-1 --mode 3840x2160 --rate 30 --right-of DP-2-2 \
|
||||
--output DP-2-2 --mode 3840x2160 --rate 30 --primary
|
||||
i3-msg restart
|
||||
'';
|
||||
};
|
||||
"latitude/desk+" = {
|
||||
executable = true;
|
||||
text = ''
|
||||
xrandr \
|
||||
--output eDP-1 --mode 1920x1080 --left-of DP-2-2 \
|
||||
--output DP-2-1 --mode 3840x2160 --rate 30 --right-of DP-2-2 \
|
||||
--output DP-2-2 --mode 3840x2160 --rate 30 --primary
|
||||
i3-msg restart
|
||||
'';
|
||||
};
|
||||
"latitude/standalone" = {
|
||||
executable = true;
|
||||
text = ''
|
||||
xrandr \
|
||||
--output eDP-1 --mode 1920x1080 --primary \
|
||||
--output DP-2-1 --off \
|
||||
--output DP-2-2 --off \
|
||||
--output DP-2-3 --off
|
||||
i3-msg restart
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue