From 2308419a6657b90a5ad9484ce8fc31fd39503aa9 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Sun, 7 Jan 2024 11:17:59 +0100 Subject: [PATCH] Remove extra --- .gitignore | 1 + config/extra.nu | 32 -------------------------------- 2 files changed, 1 insertion(+), 32 deletions(-) delete mode 100644 config/extra.nu diff --git a/.gitignore b/.gitignore index b377574..34eeb7e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ history* +config/extra.nu diff --git a/config/extra.nu b/config/extra.nu deleted file mode 100644 index 24b7cb1..0000000 --- a/config/extra.nu +++ /dev/null @@ -1,32 +0,0 @@ -# Encrypted disks uuids -$env.PRIMARY_DISK_UUID = '5b6dacc3-9172-47ea-aa52-476c1d228fba' -$env.SECONDARY_DISK_UUID = 'd7a4c513-07d4-4de2-a4ab-5208a1c284e4' - -# shortcut for xrandr -def x [] { - xrandr -} - -# $env.PRIMARY_SCREEN = 'DP-5' -# $env.SECONDARY_SCREEN = 'DP-2' -# -# # default view: only main screen -# def "x d" [] { -# ^xrandr --output $env.PRIMARY_SCREEN --mode 2560x1440 --primary --output $env.SECONDARY_SCREEN --off -# } -# -# # bureau view: both screens side to side -# def "x b" [] { -# ^xrandr --output $env.PRIMARY_SCREEN --mode 2560x1440 --primary --output $env.SECONDARY_SCREEN --mode 1920x1080 --right-of $env.PRIMARY_SCREEN -# } -# -# -# # television view: only TV on (720p so that menus are readable) -# def "x t" [] { -# ^xrandr --output $env.PRIMARY_SCREEN --off --output $env.SECONDARY_SCREEN --off --output HDMI-0 --mode 1280x720 --primary -# } -# -# # stream view: only secondary screen -# def "x s" [] { -# ^xrandr --output $env.SECONDARY_SCREEN --mode 1920x1080 --primary --output $env.PRIMARY_SCREEN --off -# }