Maintainer: Brian Wilson doc@wiltech.org
GIT: ssh://git@bitbucket.org:wiltech/fulgur.git
======
Fulgur Workstation is a light-weight highly configurable workstation platform for software and networking development.
| #!/bin/zsh | |
| # Simple function to get weather from command line via curl | |
| # To use either add to zshrc/bashrc, or run the command `source weather.zsh` | |
| export LOC="kalamazoo" | |
| # If no location is provided, weather for $LOC will be returned | |
| function wthr() { | |
| if [ -z "$1" ]; then | |
| echo "$(curl -silent wttr.in/$LOC)" |
======
Fulgur Workstation is a light-weight highly configurable workstation platform for software and networking development.
| diff --git a/colors/OceanicNext.vim b/colors/OceanicNext.vim | |
| index 1c496b2..cda25f9 100644 | |
| --- a/colors/OceanicNext.vim | |
| +++ b/colors/OceanicNext.vim | |
| @@ -53,10 +53,10 @@ function! <sid>hi(group, fg, bg, attr, attrsp) | |
| exec "hi " . a:group . " guifg=" . a:fg[0] | |
| exec "hi " . a:group . " ctermfg=" . a:fg[1] | |
| endif | |
| - if !empty(a:bg) | |
| - exec "hi " . a:group . " guibg=" . a:bg[0] |
| # | |
| # Run-time configuration file for bash dialog | |
| # Path: /etc/dialogrc | |
| # | |
| # Types of values: | |
| # | |
| # Number - <number> | |
| # String - "string" | |
| # Boolean - <ON|OFF> | |
| # Attribute - (foreground,background,highlight?) |
| ################################# | |
| # | |
| # Backend | |
| # | |
| ################################# | |
| # Backend to use: "xrender" or "glx". | |
| # GLX backend is typically much faster but depends on a sane driver. | |
| backend = "xrender"; |
| # This function calls the script below when loaded by | |
| # the shell inside of neovim. It must be placed somewhere in | |
| # your default shell's rc file e.g. ~/.zshrc | |
| neovim_autocd() { | |
| [[ $NVIM_LISTEN_ADDRESS ]] && neovim-autocd.py | |
| } | |
| chpwd_functions+=( neovim_autocd ) |
| if [ "$USER" = "root" ]; then CARETCOLOR="red"; else CARETCOLOR="yellow"; fi | |
| local return_code="%(?..%{$fg_bold[red]%}:( %?%{$reset_color%})" | |
| PROMPT=' | |
| [ %{$fg_bold[orange]%}%n%{$reset_color%}@%{$reset_color%}%{$fg_bold[red]%}%m%{$reset_color%} ]:%{${fg_bold[green]}%}%~%{$reset_color%}$(git_prompt_info) | |
| %{${fg[$CARETCOLOR]}%}➜ %{${reset_color}%}' | |
| RPS1='${return_code} %D - %*' |
| @echo off | |
| set ui_ctrlr_count=1 | |
| set iperf_server_ip="10.42.0.1" | |
| set iperf_server_port=5201 | |
| set iperf_server_threads=1 | |
| set iperf_server_window_size=64k | |
| for /L %%A in (1,1,%ui_ctrlr_count%) do ( |
| -- DrSpeedy#1852 | |
| require 'lib/natives-1627063482' | |
| local srun_enabled = false | |
| local keys = {} | |
| keys['RB'] = 183 | |
| menu.toggle(menu.my_root(), 'Super Run', {'srun_enabled'}, '', function(toggle) | |
| srun_enabled = toggle | |
| local is_super_running = false |