This commit is contained in:
Melissa Dumont 2025-07-29 14:54:22 -04:00
parent dce910e6ca
commit dd920a2095
8 changed files with 1481 additions and 81 deletions

1457
.XCompose Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
[v1]
"cargo-cache 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = ["cargo-cache"]
"cargo-update 16.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = [
"cargo-update 17.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = [
"cargo-install-update",
"cargo-install-update-config",
]
"monitor-affinity 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = ["monitor-affinity"]
"rioterm 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)" = ["rio"]
"rioterm 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)" = ["rio"]

@ -1 +1 @@
Subproject commit e6c755305358412a71a990fc2cf592c629edde1e
Subproject commit ed9190ef005829c7a2331e12fb36207794c5ad75

View File

@ -9,9 +9,9 @@
#
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
set $ctrl Control
set $alt Mod1
set $mod Mod4
set $ctrl control
set $alt mod1
set $mod mod4
# Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below.
@ -159,8 +159,10 @@ bindsym $mod+Shift+9 move container to workspace number $ws9
bindsym $mod+Shift+0 move container to workspace number $ws10
# move workspace to monitor
bindsym $mod+$alt+left move workspace to output left
bindsym $mod+$alt+right move workspace to output right
bindsym $mod+$alt+Left move workspace to output left
bindsym $mod+$alt+Right move workspace to output right
bindsym $mod+$alt+Up move workspace to output up
bindsym $mod+$alt+Down move workspace to output down
# reload the configuration file
bindsym $mod+Shift+c reload

View File

@ -1,20 +1,20 @@
[[config]]
affinities = ["primary"]
affinities = ["landscape", "leftmost"]
env = "MONITOR"
cmd = "polybar"
args = [ "main" ]
allow_multiple = false
[[config]]
affinities = ["nonprimary", "landscape"]
affinities = ["landscape", "not-leftmost"]
env = "MONITOR"
cmd = "polybar"
args = ["secondary"]
allow_multiple = true
[[config]]
affinities = ["nonprimary", "portrait"]
affinities = ["portrait"]
env = "MONITOR"
cmd = "polybar"
args = ["portrait"]
allow_multiple = true
allow_multiple = true

View File

@ -25,7 +25,7 @@ secondary = #8ABEB7
alert = #A54242
disabled = #707880
[bar/main]
[bar/base]
bottom = true
width = 100%
height = 24pt
@ -52,81 +52,22 @@ separator-foreground = ${colors.disabled}
font-0 = monospace;2
modules-left = i3
modules-center = systray
modules-right = filesystem pulseaudio xkeyboard memory cpu wlan eth date
cursor-click = pointer
cursor-scroll = ns-resize
enable-ipc = true
enable-ipc = true
[bar/main]
inherit = bar/base
modules-center = systray
[bar/secondary]
bottom = true
width = 100%
height = 24pt
monitor = "${env:MONITOR:}"
; dpi = 96
background = ${colors.background}
foreground = ${colors.foreground}
line-size = 3pt
border-size = 4pt
border-color = #00000000
padding-left = 0
padding-right = 1
module-margin = 1
separator = |
separator-foreground = ${colors.disabled}
font-0 = monospace;2
modules-left = i3
modules-right = filesystem pulseaudio xkeyboard memory cpu wlan eth date
cursor-click = pointer
cursor-scroll = ns-resize
enable-ipc = true
inherit = bar/base
[bar/portrait]
bottom = true
width = 100%
height = 24pt
monitor = "${env:MONITOR:}"
; dpi = 96
background = ${colors.background}
foreground = ${colors.foreground}
line-size = 3pt
border-size = 4pt
border-color = #00000000
padding-left = 0
padding-right = 1
module-margin = 1
separator = |
separator-foreground = ${colors.disabled}
font-0 = monospace;2
modules-left = i3
modules-right = filesystem pulseaudio xkeyboard memory cpu wlan eth date
cursor-click = pointer
cursor-scroll = ns-resize
enable-ipc = true
inherit = bar/base
; wm-restack = generic
; wm-restack = bspwm

View File

@ -45,7 +45,7 @@ assume_yes = true
no_retry = true
# Run inside tmux (default: false)
# run_in_tmux = true
run_in_tmux = true
# Changes the way topgrade interacts with
# the tmux session, creating the session

@ -1 +1 @@
Subproject commit 3e7ef0182f59c7990a52cf6ec2981adb56d5b368
Subproject commit 5c804257ceb5b3062b876afae290adf72c474aad