update configuration of hyprland and docker install packages
This commit is contained in:
@@ -173,6 +173,8 @@ packages:
|
|||||||
yay:
|
yay:
|
||||||
- teams-for-linux-bin
|
- teams-for-linux-bin
|
||||||
- docker
|
- docker
|
||||||
|
- docker-credential-secretservice-bin
|
||||||
|
- docker-compose
|
||||||
- claude
|
- claude
|
||||||
- claude-code
|
- claude-code
|
||||||
- webstorm
|
- webstorm
|
||||||
|
|||||||
+9
@@ -23,6 +23,15 @@ fi
|
|||||||
# spotify hash: <not installed>
|
# spotify hash: <not installed>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
|
{{ $spotifyPath := "/usr/bin/spotify" }}
|
||||||
|
{{ $s := stat $spotifyPath }}
|
||||||
|
{{ if and $s (hasKey $s "Exists") $s.Exists }}
|
||||||
|
# spotify hash: {{ include $spotifyPath | sha256sum }}
|
||||||
|
{{ else }}
|
||||||
|
# spotify hash: <not installed>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
{{ $catppuccinPath := joinPath .chezmoi.homeDir ".config/spicetify-catppuccin-theme/catppuccin/app.scss" }}
|
{{ $catppuccinPath := joinPath .chezmoi.homeDir ".config/spicetify-catppuccin-theme/catppuccin/app.scss" }}
|
||||||
{{ $c := stat $catppuccinPath }}
|
{{ $c := stat $catppuccinPath }}
|
||||||
{{ if and $c (hasKey $c "Exists") $c.Exists }}
|
{{ if and $c (hasKey $c "Exists") $c.Exists }}
|
||||||
@@ -2,9 +2,40 @@ hl.monitor({
|
|||||||
output = "eDP-1",
|
output = "eDP-1",
|
||||||
scale = 1,
|
scale = 1,
|
||||||
position = "0x0",
|
position = "0x0",
|
||||||
mode = "1920x1200@60"
|
mode = "1920x1200@120"
|
||||||
})
|
})
|
||||||
|
|
||||||
|
hl.monitor({
|
||||||
|
output = "desc:Dell Inc. DELL U2724DE BD19MF4",
|
||||||
|
scale = 1,
|
||||||
|
position = "-2560x0",
|
||||||
|
mode = "2560x1440@120"
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.monitor({
|
||||||
|
output = "desc:Dell Inc. DELL U2724D 1CQFMF4",
|
||||||
|
scale = 1,
|
||||||
|
position = "-5120x0",
|
||||||
|
mode = "2560x1440@120"
|
||||||
|
})
|
||||||
|
|
||||||
|
local workspace_rules = {
|
||||||
|
{ workspace = "6", monitor = "desc:Dell Inc. DELL U2724D 1CQFMF4", default = true, persistent = true },
|
||||||
|
{ workspace = "7", monitor = "desc:Dell Inc. DELL U2724D 1CQFMF4", persistent = true },
|
||||||
|
{ workspace = "8", monitor = "desc:Dell Inc. DELL U2724D 1CQFMF4", persistent = true },
|
||||||
|
{ workspace = "1", monitor = "desc:Dell Inc. DELL U2724DE BD19MF4", default = true, persistent = true },
|
||||||
|
{ workspace = "2", monitor = "desc:Dell Inc. DELL U2724DE BD19MF4", persistent = true },
|
||||||
|
{ workspace = "3", monitor = "desc:Dell Inc. DELL U2724DE BD19MF4", persistent = true },
|
||||||
|
{ workspace = "4", monitor = "desc:Dell Inc. DELL U2724DE BD19MF4", persistent = true },
|
||||||
|
{ workspace = "5", monitor = "desc:Dell Inc. DELL U2724DE BD19MF4", persistent = true },
|
||||||
|
{ workspace = "9", monitor = "eDP-1", default = true, persistent = true },
|
||||||
|
{ workspace = "10", monitor = "eDP-1", persistent = true },
|
||||||
|
}
|
||||||
|
for _, rule in ipairs(workspace_rules) do
|
||||||
|
hl.workspace_rule(rule)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
-- if multiple profiles match, profile with highest priority wins.
|
-- if multiple profiles match, profile with highest priority wins.
|
||||||
-- if no profile match at all, the fallback_profile will be applied anyways.
|
-- if no profile match at all, the fallback_profile will be applied anyways.
|
||||||
local fallback_profile="laptop"
|
local fallback_profile="laptop"
|
||||||
@@ -53,9 +84,9 @@ local profiles = {
|
|||||||
},
|
},
|
||||||
disable_other_monitors = false,
|
disable_other_monitors = false,
|
||||||
monitor_config = {
|
monitor_config = {
|
||||||
["desc:Dell Inc. DELL U2724D 1CQFMF4"] = {disabled=false, scale=1, position="0x0", mode="2560x1440@120"},
|
["desc:Dell Inc. DELL U2724D 1CQFMF4"] = {disabled=false, scale=1, position="-5120x0", mode="2560x1440@120"},
|
||||||
["desc:Dell Inc. DELL U2724DE BD19MF4"] = {disabled=false, scale=1, position="2560x0", mode="2560x1440@120"},
|
["desc:Dell Inc. DELL U2724DE BD19MF4"] = {disabled=false, scale=1, position="-2560x0", mode="2560x1440@120"},
|
||||||
["eDP-1"] = {disabled=false, scale=1, position="5120x0", mode="1920x1200@120"},
|
["eDP-1"] = {disabled=false, scale=1, position="0x0", mode="1920x1200@120"},
|
||||||
},
|
},
|
||||||
workspace_rules = {
|
workspace_rules = {
|
||||||
{ workspace = "6", monitor = "desc:Dell Inc. DELL U2724D 1CQFMF4", default = true, persistent = true },
|
{ workspace = "6", monitor = "desc:Dell Inc. DELL U2724D 1CQFMF4", default = true, persistent = true },
|
||||||
|
|||||||
Reference in New Issue
Block a user