From 72edd200c7a290b0722bb3584f7df8ee4d54dc96 Mon Sep 17 00:00:00 2001 From: Tobias Manske Date: Sat, 25 Mar 2023 13:41:16 +0100 Subject: [PATCH] Remove xf86-video-intel --- grobi/grobi.conf | 80 +++++++++++++++++++++---------------------- i3/scripts/ws-dock.sh | 6 ++-- 2 files changed, 43 insertions(+), 43 deletions(-) diff --git a/grobi/grobi.conf b/grobi/grobi.conf index fb50d36..beb95ed 100644 --- a/grobi/grobi.conf +++ b/grobi/grobi.conf @@ -27,59 +27,59 @@ rules: # This config will throw errors in default grobi! - name: DELL outputs_connected: - - DP2-1-BNQ-30887-21573-BenQ GL2450H-ACB00126019 - - DP2-2-BNQ-30887-21573-BenQ GL2450H-X4F00171019 - - DP2-3-SAM-3953-1129860145-S34J55x-H4LT100404 + - DP-2-1-BNQ-30887-21573-BenQ GL2450H-ACB00126019 + - DP-2-2-BNQ-30887-21573-BenQ GL2450H-X4F00171019 + - DP-2-3-SAM-3953-1129860145-S34J55x-H4LT100404 configure_row: - - DP2-1@1920x1080::left - - DP2-3@3440x1440 - - DP2-2@1920x1080::right + - DP-2-1@1920x1080::left + - DP-2-3@3440x1440 + - DP-2-2@1920x1080::right # atomic instructs grobi to only call xrandr once and configure all the # outputs. This does not always work with all graphic cards. atomic: false - primary: DP2-3 + primary: DP-2-3 execute_after: - xset s on - rfkill block wifi - bluetoothctl power on - - xrandr --output DP2-1 --set "Broadcast RGB" "Full" - - xrandr --output DP2-2 --set "Broadcast RGB" "Full" + - xrandr --output DP-2-1 --set "Broadcast RGB" "Full" + - xrandr --output DP-2-2 --set "Broadcast RGB" "Full" - systemctl --user start redshift-gtk.service - /home/rad4day/.config/i3/scripts/ws-dock.sh - name: "Regus Office" outputs_connected: - - eDP1 - - DP1-DEL-41367-825642060-DELL S2721QS-FHP9M43 + - eDP-1 + - DP-1-DEL-41367-825642060-DELL S2721QS-FHP9M43 configure_column: - - DP1@3840x2160 - - eDP1 - primary: DP1 + - DP-1@3840x2160 + - eDP-1 + primary: DP-1 atomic: false execute_after: - xset s 300 120 - name: "ATIS" outputs_connected: - - eDP1 - - DP1 + - eDP-1 + - DP-1 configure_column: - - DP1@1920x1080 - - eDP1 - primary: DP1 + - DP-1@1920x1080 + - eDP-1 + primary: DP-1 atomic: false execute_after: - xset s on - name: FSI outputs_connected: - - eDP1 - - DP4-2-GSM-22964-514483-24EB23-609NTFAF4483 - - DP4-3-GSM-22964-279831-24EB23-305NDGL87831 + - eDP-1 + - DP-4-2-GSM-22964-514483-24EB23-609NTFAF4483 + - DP-4-3-GSM-22964-279831-24EB23-305NDGL87831 configure_row: - - DP4-2@1920x1080 - - DP4-3@1920x1080 - - eDP1@2256x1504 + - DP-4-2@1920x1080 + - DP-4-3@1920x1080 + - eDP-1@2256x1504 primary: DP4-3 atomic: false execute_after: @@ -89,21 +89,21 @@ rules: - name: "ATIS-Horizontal" outputs_connected: - - eDP1 - - DP1 + - eDP-1 + - DP-1 configure_row: - - eDP1 - - DP1@1920x1080 - primary: DP1 + - eDP-1 + - DP-1@1920x1080 + primary: DP-1 atomic: false execute_after: - xset s on - name: "Mobile" outputs_connected: - - eDP1 - configure_single: eDP1 - primary: eDP1 + - eDP-1 + configure_single: eDP-1 + primary: eDP-1 execute_after: - rfkill unblock wifi - xset s on @@ -111,12 +111,12 @@ rules: - name: "Presentation" outputs_connected: - - eDP1 - - DP1 + - eDP-1 + - DP-1 configure_row: - - eDP1 - - DP1@1920x1200 - primary: eDP1 + - eDP-1 + - DP-1@1920x1200 + primary: eDP-1 atomic: false execute_after: - xset s off @@ -127,8 +127,8 @@ rules: # which enables an output device that is always present, so you can debug # what's going on. - name: Fallback - configure_single: eDP1 - primary: eDP1 + configure_single: eDP-1 + primary: eDP-1 execute_after: - rfkill unblock wifi - xset s on diff --git a/i3/scripts/ws-dock.sh b/i3/scripts/ws-dock.sh index 95fa360..83ff08c 100755 --- a/i3/scripts/ws-dock.sh +++ b/i3/scripts/ws-dock.sh @@ -6,17 +6,17 @@ exec &>/dev/null center() { i3-msg "workspace $1" - i3-msg "move workspace to output DP2-3" + i3-msg "move workspace to output DP-2-3" } left() { i3-msg "workspace $1" - i3-msg "move workspace to output DP2-1" + i3-msg "move workspace to output DP-2-1" } right() { i3-msg "workspace $1" - i3-msg "move workspace to output DP2-2" + i3-msg "move workspace to output DP-2-2" } FOCUS="$(i3-msg -t get_workspaces | jq '.[] | select(.focused==true).name' | cut -d"\"" -f2)"