Compare commits
6 Commits
2a58f121fc
...
c73759a2c3
Author | SHA1 | Date |
---|---|---|
David Thurstenson | c73759a2c3 | |
David Thurstenson | b8e805c425 | |
David Thurstenson | 3dcfc3184a | |
David Thurstenson | c7c13930cf | |
David Thurstenson | 36df5d071d | |
David Thurstenson | b1aecfa7be |
|
@ -19,5 +19,12 @@ for_window [app_id="bpytop"] {
|
||||||
fullscreen enable
|
fullscreen enable
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
# Launch bpytop with custom app_id
|
# Launch bpytop with custom app_id
|
||||||
bindsym $mod+Alt+$ws-monitor-key exec "alacritty --class bpytop -e bpytop"
|
set $monitor-launch "alacritty --class bpytop -e bpytop"
|
||||||
|
|
||||||
|
# Launch monitor on key combo
|
||||||
|
bindsym $mod+Alt+$ws-monitor-key exec $monitor-launch
|
||||||
|
|
||||||
|
# Launch monitor on startup
|
||||||
|
exec $monitor-launch
|
||||||
|
|
|
@ -19,5 +19,9 @@ bindsym $mod+d exec $menu
|
||||||
bindsym $mod+Shift+c reload
|
bindsym $mod+Shift+c reload
|
||||||
|
|
||||||
|
|
||||||
|
# Toggle border style with $mod+Shift+b
|
||||||
|
bindsym $mod+Shift+b border toggle
|
||||||
|
|
||||||
|
|
||||||
# Exit sway
|
# Exit sway
|
||||||
bindsym $mod+Shift+e exit
|
bindsym $mod+Shift+e exit
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Sway Config: Movement
|
# Sway Config: Focus
|
||||||
#
|
#
|
||||||
# Thurstylark
|
# Thurstylark
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
# Sway Config: Workspace assignments
|
||||||
|
#
|
||||||
|
# Thurstylark
|
||||||
|
|
||||||
|
# Make initial workspace assignments
|
||||||
|
workspace $ws-monitor output $o-ws-monitor
|
||||||
|
workspace $ws-media output $o-ws-media
|
||||||
|
workspace 1 output $o-ws-1
|
||||||
|
|
||||||
|
# Focus workspace 1 for user input
|
||||||
|
workspace 1
|
|
@ -27,3 +27,7 @@ output $o-id {
|
||||||
scale $o-scalefactor
|
scale $o-scalefactor
|
||||||
subpixel $o-subpixel
|
subpixel $o-subpixel
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Set this display up as the initial location for the media workspace
|
||||||
|
set $o-ws-media "Ancor Communications Inc ASUS PB287Q 0x00005B34"
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
# Sway Config: Output
|
||||||
|
#
|
||||||
|
# Thurstylark
|
||||||
|
|
||||||
|
# Display ID is required
|
||||||
|
set $o-id "HDMI-A-1"
|
||||||
|
|
||||||
|
# Mode
|
||||||
|
set $o-mode "1920x1080@60Hz"
|
||||||
|
|
||||||
|
# Do the thing
|
||||||
|
# (comment or remove direcives that are unnecessary to avoid errors)
|
||||||
|
output $o-id {
|
||||||
|
mode $o-mode
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Assign the Monitor workspace to this output
|
||||||
|
set $o-ws-monitor "HDMI-A-1"
|
|
@ -19,3 +19,7 @@ output $o-id {
|
||||||
mode $o-mode
|
mode $o-mode
|
||||||
position $o-pos-x $o-pos-y
|
position $o-pos-x $o-pos-y
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Set this output up as the initial output for workspace 1
|
||||||
|
set $o-ws-1 "Unknown ASUS VP348 0x0000CA5D"
|
||||||
|
|
Loading…
Reference in New Issue