This commit is contained in:
2024-06-17 04:47:55 -05:00
parent 53862d2a8b
commit 30a8cb3f9f
11 changed files with 304 additions and 68 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 722 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 348 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 362 KiB

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@@ -1,13 +1,12 @@
profile {
output eDP-1 enable
output eDP-1 mode 1920x1080 scale 1 position 0,0
output DP-6 enable position 3440,1440
output DP-7 enable position 0,1440
output DP-5 enable position 0,0
output eDP-1 disable
}
profile {
output eDP-1 disable
output DP-6 mode 2560x1440 scale 1 position 3440,1440
output DP-7 mode 3440x1440 scale 1 position 0,1440
output DP-5 mode 3440x1440 scale 1 position 0,0
output eDP-1 enable position 0,0
}
# You can get the names of your outputs by running: swaymsg -t get_outputs

View File

@@ -0,0 +1,24 @@
gui:
theme:
activeBorderColor:
- '#cba6f7'
- bold
inactiveBorderColor:
- '#a6adc8'
optionsTextColor:
- '#89b4fa'
selectedLineBgColor:
- '#313244'
cherryPickedCommitBgColor:
- '#45475a'
cherryPickedCommitFgColor:
- '#cba6f7'
unstagedChangesColor:
- '#f38ba8'
defaultFgColor:
- '#cdd6f4'
searchingActiveBorderColor:
- '#f9e2af'
authorColors:
'*': '#b4befe'

View File

@@ -186,5 +186,8 @@ bindsym XF86MonBrightnessUp exec brightnessctl s +10%
# ScreenShot
bindsym $mod+p exec grim -g "$(slurp)" - | wl-copy
default_border none
# Border
default_border pixel
gaps inner 5
include /etc/sway/config.d/*

View File

@@ -33,7 +33,7 @@ text-wrong-color=eba0ac
# daemonize
indicator-caps-lock
# datestr=%A
image=$HOME/.config/configfiles/lockscreen.jpg
image=$HOME/.config/configfiles/lockscreen.png
scaling=fill
font=UbuntuMono
font-size=20

View File

@@ -5,7 +5,7 @@
"spacing": 15,
"modules-left": ["sway/workspaces","sway/mode"],
"modules-center": ["clock"],
"modules-right": ["tray","network", "battery","pulseaudio"],
"modules-right": ["tray","idle_inhibitor","network", "battery","pulseaudio"],
"sway/mode": {
"format": "{}"
},
@@ -51,4 +51,11 @@
"icon-size": 20,
"spacing": 10
},
"idle_inhibitor": {
"format": "{icon}",
"format-icons": {
"activated": "\uf06e",
"deactivated": "\uf070"
}
}
}