Remove extra

This commit is contained in:
Thomas Forgione 2024-01-07 11:17:59 +01:00
parent 01a9c284e6
commit 2308419a66
2 changed files with 1 additions and 32 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
history*
config/extra.nu

View File

@ -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
# }