Err
Solution
Error response from daemon: client version 1.41 is too old. Minimum supported API version is 1.44, please upgrade your client to a newer version
Solution
mkdir -p ~/.docker/cli-plugins/
curl -SL https://github.com/docker/compose/releases/latest/download/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
chmod +x ~/.docker/cli-plugins/docker-compose
Hello Palo Alto =)
#spam #log #parser
bot-todo-nginx | 172.20.0.1 - - [28/Jan/2026:15:52:59 +0000] "GET /.well-known/security.txt HTTP/1.1" 200 5 "-" "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "1.1.1.1"
#spam #log #parser
3👌1
Disable focucs stealing
1 lvl:
2 lvl:
https://github.com/dsalt/devilspie2
1 lvl:
xfconf-query -c xfwm4 -p /general/prevent_focus_stealing -s true
2 lvl:
https://github.com/dsalt/devilspie2
GitHub
GitHub - dsalt/devilspie2: Devilspie2 is a window matching utility, allowing the user to perform scripted actions on windows as…
Devilspie2 is a window matching utility, allowing the user to perform scripted actions on windows as they are opened and closed. - dsalt/devilspie2
Open Terminal Strict Under Cursor via Ctrl + Alt + T
~/.local/bin/terminal-at-cursor.sh
~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml
#xfce #terminal #ux
~/.local/bin/terminal-at-cursor.sh
#!/bin/bash
# Open xfce4-terminal at the current mouse cursor position
# Get current mouse position
eval "$(xdotool getmouselocation --shell)"
# Launch terminal at cursor position using geometry hints
# --disable-server prevents D-Bus reuse so it's a fresh process
# --geometry=COLSxROWS+X+Y sets position in pixels
xfce4-terminal --disable-server --geometry="80x24+${X}+${Y}"
~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml
...
<property name="<Primary><Alt>t" type="string" value="/home/romaxa/.local/bin/terminal-at-cursor.sh"/>
...
#xfce #terminal #ux