Working on awesome.

This commit is contained in:
Lord_Devi 2024-07-29 03:13:18 -04:00
parent 9614e754fd
commit 508bff7d80
3 changed files with 50 additions and 1 deletions

View file

@ -70,6 +70,7 @@ _define_pkg_groups() {
_pkg_groups=(\
"Container Management" \
"Development Tools" \
"Development Libraries" \
"Text-based Internet")
}
# }}} </define pkg groups>

View file

@ -32,7 +32,8 @@ _mordu "Starting script."
# {{{ <define packages>
_define_packages() {
_packages=(\
wireshark)
wireshark fontconfig-devel freetype-devel libX11-xcb \
libstdc++-static libstdc++-devel)
}
# }}} </define packages>

View file

@ -0,0 +1,47 @@
#!/usr/bin/env bash
_location=".config/yadm/workstation-extras.d/04-neovide.sh"
export GHQ_ROOT="${HOME}/.local/opt/git"
_ghq="${HOME}/.local/opt/go/bin/ghq"
# {{{ <mordu debug system>
_debug=y # Comment this out to disable debuging.
_blue="\e[34m"
_magenta="\e[35m"
_green="\e[92m"
_cyan="\e[36m"
_white="\e[97m"
_end_color="\e[0m"
# Mordu with location.
_mordu() {
[ "$_debug" ] && echo -e "${_blue}>>> ${_magenta}Mordu${_cyan}@${_green}${_location}${_cyan}:${_white} $*${_end_color}"
}
# Mordu with location and no new line.
_mordu_n() {
[ "$_debug" ] && echo -en "${_blue}>>> ${_magenta}Mordu${_cyan}@${_green}${_location}${_cyan}:${_white} $*${_end_color}"
}
# Echo with new line to add completion messages to _mordu_n
_mordu_nl() {
[ "$_debug" ] && echo -e "${_white}$*${_end_color}"
}
_mordu "Starting script."
# }}} </mordu debug system>
# {{{ <install neovide>
_install_neovide() {
cargo install --git https://git.mgk.one/x11-misc/neovide.neovide
}
# }}} </git clone gsu and install>
# {{{ <main loop>
_main() {
_install_neovide
}
_main
# }}} </main loop>
_mordu "Completed script."