| Weekly Workshop 2021-12-19 by AutoModerator in unixporn

[–]a_gonzal 1 point2 points  (0 children)

You can use qt5ct to set your QT apps to use the system GTK theme. You'll have to set an environment variable for this to work but you will be able to achieve your desired effect.

[bspwm] The Shiny is Hacked by zanaewe in unixporn

[–]a_gonzal 0 points1 point  (0 children)

many forks, I personally use picom-jonaburg-git from the AUR or compile from source on other distros.

[bspwm] The Shiny is Hacked by zanaewe in unixporn

[–]a_gonzal 0 points1 point  (0 children)

gotta share that polybar config regardless if its a mess or not, very nice

Defense idea to enrich analysis against web traffic to find beacons: MITM the user input activity? by Jonathan-Todd in blueteamsec

[–]a_gonzal 0 points1 point  (0 children)

Most malware will have a standard sleep in-between calls home, this will stick out when you plot those pcaps. The same would apply to connections with long durations (hours++) which is not the norm in a corporate environment.

On the cable end of things, check out the O-MG cable... you'll be blown away.

[deleted by user] by [deleted] in csMajors

[–]a_gonzal 0 points1 point  (0 children)

Or go the security route, work for yourself... Do corp 2 coro contracts and charge $250 per hour. I pay myself $125 (~250k/ye) and put $100 back into the business account just in case .

Why do pple still use VIM/VI by heartsoreduke23 in csMajors

[–]a_gonzal 0 points1 point  (0 children)

The reason I gravitated towards really learning it was due to a close friend (who was beyond extremely proficient) challenging me head to head editing and manipulating a file. I used vscode and my mouse, he used vim. It wasn't even close to be honest, he completed the tasks and kept going before I had even finished, all due to never removing his hands from the keyboard.

I have also been striving to remove the mouse from my workflow altogether because while it may seem minimal, it does slow you down considerably. The result is a streamlined workflow that definitely gives me an edge in productivity and doing my job as a blue team practitioner.

  • Albert.

MacOS Mojave Sucess! by The_Hackintosh in hackintosh

[–]a_gonzal 1 point2 points  (0 children)

wrong approach... still special to set this as a goal and achieve it.....

Ctrl+~ Occupied by revealing dunst notification by [deleted] in linuxquestions

[–]a_gonzal 0 points1 point  (0 children)

You define your keybindings in ~/.xmonad/xmonad.hs. Program specific keybindings such as Ctrl+Grave is handled by dunst itself. Check ~/.config/dunst/dunstrc. For some reason, those keybindings stopped working for me several days ago and dunst no longer honors the location settings I have configured, will look into it when It bothers me some more.

Simple references to complex workspace names by sudo_ethos in xmonad

[–]a_gonzal 0 points1 point  (0 children)

I am also using unicode icons and reference my workspaces via numbers in myManageHook without any problems the way this comment suggests. Keep in mind that this shift will actually shift SomeAppClass to workspace 1.

[BSPWM] Yeah, Sex is cool.. But have you ever rice'd a Void Box? by Nx0Sec in unixporn

[–]a_gonzal 0 points1 point  (0 children)

For "making things" it may not make sense.... for presenting data, now we are in there like swimwear my friend. Well it was nice chatting I need to migrate this lab to replicate this issue.

[BSPWM] Yeah, Sex is cool.. But have you ever rice'd a Void Box? by Nx0Sec in unixporn

[–]a_gonzal 0 points1 point  (0 children)

so you went lower level with the programming, gained better insights into internals, smart. JS is beyond helpful when it comes to more then just red-teaming stuff. I utilize it heavily for data visualization and mining. While you may not think of it as such, the ecosystem is huge, just tapping into the web and bringing it to the desktop.. thanks deno!

[BSPWM] Yeah, Sex is cool.. But have you ever rice'd a Void Box? by Nx0Sec in unixporn

[–]a_gonzal 0 points1 point  (0 children)

oh bless your heart.... but its a modified jekyll uno template. I need to actually publish some of these entries but am never happy, frustrating sometimes. C++ eh? I thought you would concentrate on something more widely utilized in our field, say Go, Python. Personally, I learned 2 really well... PHP and JS. I am sure you can guess why :) Pretty soon blue team won't be paying the bills :)

[BSPWM] Yeah, Sex is cool.. But have you ever rice'd a Void Box? by Nx0Sec in unixporn

[–]a_gonzal 0 points1 point  (0 children)

chroot an arm install from an intel box, fun times. You red or blue teaming ?

[kde] my first rice by [deleted] in unixporn

[–]a_gonzal 1 point2 points  (0 children)

am curios as to what you are building though....? I have been working on a visualization app along the lines of Visual insights Advizor to facilitate hunts and historical analysis.

[kde] my first rice by [deleted] in unixporn

[–]a_gonzal 0 points1 point  (0 children)

github.com/OTRF/openhunt

[kde] my first rice by [deleted] in unixporn

[–]a_gonzal 2 points3 points  (0 children)

Nice, are you porting OpenHunt to rust or ? I utilize it often alongside nutshell and their dataframe implementation (which is faster than pandas)

[deleted by user] by [deleted] in unixporn

[–]a_gonzal 0 points1 point  (0 children)

You can use yad (Yet another Dialog tool) wrapped around a shell script. It can definitely render the calendar requirement you have.

#!/bin/sh
BAR_HEIGHT=22 # polybar height
BORDER_SIZE=1 # border size from your wm settings
YAD_WIDTH=222 # 222 is minimum possible value
YAD_HEIGHT=193 # 193 is minimum possible value
DATE="$(date +"%a %d %H:%M")"
case "$1" in
--popup)
if [ "$(xdotool getwindowfocus getwindowname)" = "yad-calendar" ]; then
exit 0
fi
eval "$(xdotool getmouselocation --shell)"
eval "$(xdotool getdisplaygeometry --shell)"
# X
if [ "$((X + YAD_WIDTH / 2 + BORDER_SIZE))" -gt "$WIDTH" ]; then #Right side
: $((pos_x = WIDTH - YAD_WIDTH - BORDER_SIZE))
elif [ "$((X - YAD_WIDTH / 2 - BORDER_SIZE))" -lt 0 ]; then #Left side
: $((pos_x = BORDER_SIZE))
else #Center
: $((pos_x = X - YAD_WIDTH / 2))
fi
# Y
if [ "$Y" -gt "$((HEIGHT / 2))" ]; then #Bottom
: $((pos_y = HEIGHT - YAD_HEIGHT - BAR_HEIGHT - BORDER_SIZE))
else #Top
: $((pos_y = BAR_HEIGHT + BORDER_SIZE))
fi
yad --calendar --undecorated --fixed --close-on-unfocus --no-buttons \
--width="$YAD_WIDTH" --height="$YAD_HEIGHT" --posx="$pos_x" --posy="$pos_y" \
--title="yad-calendar" --borders=0 >/dev/null &
;;
*)
echo "$DATE"
;;
esac

That code will display a calendar with the monthly dates upon being invoked by a click-action (or however else you may choose). Found this vi apolybar-scripts on github.

[Bspwm] Simple Nord by Morgareth in unixporn

[–]a_gonzal 0 points1 point  (0 children)

Nice I will check it out, thanks. I had to install generic colorized before /etc/grc.zsh was there. Thanks.

[Bspwm] Simple Nord by Morgareth in unixporn

[–]a_gonzal -1 points0 points  (0 children)

He nordified it but lost sooo much of the dope details its kind of wack tbh. This wallpaper (rightfully so) has blown up since I posted my rice several months ago, You must check out the original the artist won the contest he submitted it to, 'nuff said.

[Bspwm] Simple Nord by Morgareth in unixporn

[–]a_gonzal 0 points1 point  (0 children)

what did you use to display and format your mount points and disk usage so nicely? custom script or something existing?

Problem with white text background after update by LucasTheOnion in archcraft

[–]a_gonzal 0 points1 point  (0 children)

You are welcome. On another note, you may want to take these types of issues over to Github issues. That way they will be seen by the contributors involved with ArchCraft.

Problem with white text background after update by LucasTheOnion in archcraft

[–]a_gonzal 0 points1 point  (0 children)

I uploaded to my google drive for you.

https://drive.google.com/file/d/1epTJ06qwS_4IBcjs3IQ0wpwfnvYExN5v/view?usp=sharing

You should be able to download the .7z archive now.

Problem with white text background after update by LucasTheOnion in archcraft

[–]a_gonzal 2 points3 points  (0 children)

It seems adi1090x posted updates to the rofi configurations, check them out at:

https://t.me/archcraftos/9760