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
Close any window with Ctrl+Alt+Click (XFCE / X11)
Tired of aiming at the tiny X button? Here's how to close any window by just Ctrl+Alt+Clicking
anywhere on it.
Prerequisites: XFCE on X11, xdotool installed.
1. Install xbindkeys
2. Create the script
~/.local/bin/close-window-under-cursor.sh
Make it executable:
3. Create xbindkeys config
~/.xbindkeysrc
4. Autostart on login
~/.config/autostart/xbindkeys.desktop
5. Start it now (without relogging):
Done. Hold Ctrl+Alt and click on any window to close it.
To revert:
#xbindkeys #close #window
Tired of aiming at the tiny X button? Here's how to close any window by just Ctrl+Alt+Clicking
anywhere on it.
Prerequisites: XFCE on X11, xdotool installed.
1. Install xbindkeys
sudo apt install xbindkeys
2. Create the script
~/.local/bin/close-window-under-cursor.sh
#!/bin/bash
eval $(xdotool getmouselocation --shell)
[ "$WINDOW" -gt 0 ] 2>/dev/null && xdotool windowclose "$WINDOW"
Make it executable:
chmod +x ~/.local/bin/close-window-under-cursor.sh
3. Create xbindkeys config
~/.xbindkeysrc
"~/.local/bin/close-window-under-cursor.sh"
Control+Alt + b:1
4. Autostart on login
~/.config/autostart/xbindkeys.desktop
[Desktop Entry]
Type=Application
Name=xbindkeys
Exec=xbindkeys
StartupNotify=false
5. Start it now (without relogging):
xbindkeys
Done. Hold Ctrl+Alt and click on any window to close it.
To revert:
killall xbindkeys
rm ~/.xbindkeysrc
rm ~/.local/bin/close-window-under-cursor.sh
rm ~/.config/autostart/xbindkeys.desktop
sudo apt remove xbindkeys # optional
#xbindkeys #close #window
👍1
👍1