This commit is contained in:
Steve 2022-12-03 21:28:13 -05:00
commit 05a7dcaebd
4 changed files with 14 additions and 0 deletions

View file

@ -1,3 +1,6 @@
#alacritty #alacritty
alt + z 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' 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'

1
.local/bin/godot Executable file
View file

@ -0,0 +1 @@
nohup $HOME/.local/share/Godot3.5/Godot_v3.5.1-stable_x11.64 > /dev/null 2>&1 & disown

1
.local/bin/godot-mono Executable file
View file

@ -0,0 +1 @@
nohup $HOME/.local/share/Godot3.5_Mono/Godot_v3.5.1-stable_mono_x11.64 > /dev/null 2>&1 & disown

9
.local/bin/hdx Executable file
View file

@ -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