diff --git a/.config/Code - OSS/User/settings.json b/.config/Code - OSS/User/settings.json index e5b15ba..515138b 100644 --- a/.config/Code - OSS/User/settings.json +++ b/.config/Code - OSS/User/settings.json @@ -62,5 +62,9 @@ "serverUrl": "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 } diff --git a/.config/mako/config b/.config/mako/config index 3e3151a..8bdc3e9 100644 --- a/.config/mako/config +++ b/.config/mako/config @@ -18,3 +18,12 @@ default-timeout=15000 text-color=#F27835 progress-color=over #F27835 default-timeout=0 + +[mode=away] +default-timeout=0 +ignore-timeout=1 + +[mode=dnd] +invisible=1 +default-timeout=0 +ignore-timeout=1 diff --git a/.config/sway/config b/.config/sway/config index 0879f03..e255711 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -282,9 +282,11 @@ bindsym $mod+$mod2+Print exec $HOME/.local/bin/swaygrim --all # Lockscreen # ------------------------------------------------------------------------------ exec swayidle -w \ + timeout 30 'makoctl -a away' \ timeout 300 'swaylock -f' \ timeout 600 'swaymsg "output * dpms off"' \ resume 'swaymsg "output * dpms on"' \ + resume 'makoctl -r away' \ before-sleep 'swaylock -f' bindsym control+$mod2+l exec swaylock diff --git a/.config/waybar/config b/.config/waybar/config index 089c0c1..a45801c 100644 --- a/.config/waybar/config +++ b/.config/waybar/config @@ -12,6 +12,7 @@ "pulseaudio", "battery", "idle_inhibitor", + "custom/notification", "tray" ], @@ -86,5 +87,16 @@ }, "on-click": "pavucontrol", "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 } } diff --git a/.config/waybar/style.css b/.config/waybar/style.css index 3644a4e..c501897 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -16,7 +16,8 @@ window#waybar { #tray, #idle_inhibitor, #workspaces, -#mode { +#mode, +#custom-notification { padding: 0 5px; } diff --git a/.profile b/.profile index c679cd8..9f0f9a0 100644 --- a/.profile +++ b/.profile @@ -9,3 +9,4 @@ export _JAVA_AWT_WM_NONREPARENTING=1 export NO_AT_BRIDGE=1 export MOZ_DBUS_REMOTE=1 export WLR_DRM_NO_MODIFIERS=1 +# export BROWSER=/usr/bin/librewolf diff --git a/.zshenv b/.zshenv index 5c9aaff..9af6d79 100644 --- a/.zshenv +++ b/.zshenv @@ -1,5 +1,4 @@ export EDITOR=vim -export BROWSER=librewolf typeset -U PATH path path=("$HOME/.local/bin" "$path[@]") diff --git a/.zshrc.local.local##hostname.avior b/.zshrc.local.local##hostname.avior index 4596ffc..3734893 100644 --- a/.zshrc.local.local##hostname.avior +++ b/.zshrc.local.local##hostname.avior @@ -16,3 +16,6 @@ export TF_PLUGIN_CACHE_DIR="$HOME/.terraform.d/plugin-cache" # Vault export VAULT_ADDR=https://vault.srv.reu.bsh-lando.com + +export DEBUG=nock.* +export PACT_DO_NOT_TRACK=true