update
This commit is contained in:
parent
dbdda4ce9c
commit
2e02e2098e
8 changed files with 34 additions and 3 deletions
|
@ -62,5 +62,9 @@
|
||||||
"serverUrl": "https://cq.bsh-sdd.com",
|
"serverUrl": "https://cq.bsh-sdd.com",
|
||||||
"connectionId": "https-cq-bsh-sdd-com-"
|
"connectionId": "https-cq-bsh-sdd-com-"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"playwright.reuseBrowser": true,
|
||||||
|
"llm.attributionEndpoint": "",
|
||||||
|
"llm.modelIdOrEndpoint": "https://codepilot.model.tngtech.com/api/generate/",
|
||||||
|
"llm.attributionWindowSize": 0
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,3 +18,12 @@ default-timeout=15000
|
||||||
text-color=#F27835
|
text-color=#F27835
|
||||||
progress-color=over #F27835
|
progress-color=over #F27835
|
||||||
default-timeout=0
|
default-timeout=0
|
||||||
|
|
||||||
|
[mode=away]
|
||||||
|
default-timeout=0
|
||||||
|
ignore-timeout=1
|
||||||
|
|
||||||
|
[mode=dnd]
|
||||||
|
invisible=1
|
||||||
|
default-timeout=0
|
||||||
|
ignore-timeout=1
|
||||||
|
|
|
@ -282,9 +282,11 @@ bindsym $mod+$mod2+Print exec $HOME/.local/bin/swaygrim --all
|
||||||
# Lockscreen
|
# Lockscreen
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
exec swayidle -w \
|
exec swayidle -w \
|
||||||
|
timeout 30 'makoctl -a away' \
|
||||||
timeout 300 'swaylock -f' \
|
timeout 300 'swaylock -f' \
|
||||||
timeout 600 'swaymsg "output * dpms off"' \
|
timeout 600 'swaymsg "output * dpms off"' \
|
||||||
resume 'swaymsg "output * dpms on"' \
|
resume 'swaymsg "output * dpms on"' \
|
||||||
|
resume 'makoctl -r away' \
|
||||||
before-sleep 'swaylock -f'
|
before-sleep 'swaylock -f'
|
||||||
|
|
||||||
bindsym control+$mod2+l exec swaylock
|
bindsym control+$mod2+l exec swaylock
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"pulseaudio",
|
"pulseaudio",
|
||||||
"battery",
|
"battery",
|
||||||
"idle_inhibitor",
|
"idle_inhibitor",
|
||||||
|
"custom/notification",
|
||||||
"tray"
|
"tray"
|
||||||
],
|
],
|
||||||
|
|
||||||
|
@ -86,5 +87,16 @@
|
||||||
},
|
},
|
||||||
"on-click": "pavucontrol",
|
"on-click": "pavucontrol",
|
||||||
"tooltip": false
|
"tooltip": false
|
||||||
|
},
|
||||||
|
"custom/notification": {
|
||||||
|
"exec-if": "command -v makoctl",
|
||||||
|
"exec": "if [[ $(makoctl mode) == *\"dnd\"* ]]; then echo ; else echo ; fi",
|
||||||
|
"format": "{}",
|
||||||
|
"on-click": "if [[ $(makoctl mode) == *\"dnd\"* ]]; then makoctl mode -r dnd; else makoctl mode -a dnd; fi; pkill -SIGRTMIN+10 waybar",
|
||||||
|
"on-click-right": "makoctl dismiss -a",
|
||||||
|
"tooltip": false,
|
||||||
|
"signal": 10,
|
||||||
|
"interval": 1,
|
||||||
|
"exec-on-event": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,8 @@ window#waybar {
|
||||||
#tray,
|
#tray,
|
||||||
#idle_inhibitor,
|
#idle_inhibitor,
|
||||||
#workspaces,
|
#workspaces,
|
||||||
#mode {
|
#mode,
|
||||||
|
#custom-notification {
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
1
.profile
1
.profile
|
@ -9,3 +9,4 @@ export _JAVA_AWT_WM_NONREPARENTING=1
|
||||||
export NO_AT_BRIDGE=1
|
export NO_AT_BRIDGE=1
|
||||||
export MOZ_DBUS_REMOTE=1
|
export MOZ_DBUS_REMOTE=1
|
||||||
export WLR_DRM_NO_MODIFIERS=1
|
export WLR_DRM_NO_MODIFIERS=1
|
||||||
|
# export BROWSER=/usr/bin/librewolf
|
||||||
|
|
1
.zshenv
1
.zshenv
|
@ -1,5 +1,4 @@
|
||||||
export EDITOR=vim
|
export EDITOR=vim
|
||||||
export BROWSER=librewolf
|
|
||||||
|
|
||||||
typeset -U PATH path
|
typeset -U PATH path
|
||||||
path=("$HOME/.local/bin" "$path[@]")
|
path=("$HOME/.local/bin" "$path[@]")
|
||||||
|
|
|
@ -16,3 +16,6 @@ export TF_PLUGIN_CACHE_DIR="$HOME/.terraform.d/plugin-cache"
|
||||||
|
|
||||||
# Vault
|
# Vault
|
||||||
export VAULT_ADDR=https://vault.srv.reu.bsh-lando.com
|
export VAULT_ADDR=https://vault.srv.reu.bsh-lando.com
|
||||||
|
|
||||||
|
export DEBUG=nock.*
|
||||||
|
export PACT_DO_NOT_TRACK=true
|
||||||
|
|
Loading…
Reference in a new issue