From 05a7dcaebd97e8b521596365ed348f6bdc9e18bf Mon Sep 17 00:00:00 2001 From: Steve Date: Sat, 3 Dec 2022 21:28:13 -0500 Subject: [PATCH] updates --- .config/sxhkd/sxhkdrc | 3 +++ .local/bin/godot | 1 + .local/bin/godot-mono | 1 + .local/bin/hdx | 9 +++++++++ 4 files changed, 14 insertions(+) create mode 100755 .local/bin/godot create mode 100755 .local/bin/godot-mono create mode 100755 .local/bin/hdx diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc index 94b5b6c..196120a 100644 --- a/.config/sxhkd/sxhkdrc +++ b/.config/sxhkd/sxhkdrc @@ -1,3 +1,6 @@ #alacritty alt + z tdrop -n top --width 100% --height 65% --post-map-hook 'wmctrl -r "Alacritty - Drop Down - Top" -b add,above,sticky' alacritty --title 'Alacritty - Drop Down - Top' + +super + shift + Return + tdrop -n top --width 100% --height 65% --post-map-hook 'wmctrl -r "Alacritty - Drop Down - Top" -b add,above,sticky' alacritty --title 'Alacritty - Drop Down - Top' diff --git a/.local/bin/godot b/.local/bin/godot new file mode 100755 index 0000000..e50f13e --- /dev/null +++ b/.local/bin/godot @@ -0,0 +1 @@ +nohup $HOME/.local/share/Godot3.5/Godot_v3.5.1-stable_x11.64 > /dev/null 2>&1 & disown diff --git a/.local/bin/godot-mono b/.local/bin/godot-mono new file mode 100755 index 0000000..4686548 --- /dev/null +++ b/.local/bin/godot-mono @@ -0,0 +1 @@ +nohup $HOME/.local/share/Godot3.5_Mono/Godot_v3.5.1-stable_mono_x11.64 > /dev/null 2>&1 & disown diff --git a/.local/bin/hdx b/.local/bin/hdx new file mode 100755 index 0000000..ff0e69e --- /dev/null +++ b/.local/bin/hdx @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +#while read data; do +data=$1 +withoutQuotes=`echo ${data} | sed s/\"//g` +without0x=`echo ${withoutQuotes} | sed s/0x//g` +clean=${without0x} +echo $((16#${clean})) +#done