├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── install.sh ├── nwg-1.svg ├── nwg-2.svg ├── nwg-3.svg ├── nwg-screenshot.svg ├── nwg-shell-config.desktop ├── nwg-shell-config.svg ├── nwg-shell-translate.svg ├── nwg-shell-update.svg ├── nwg-system-update ├── nwg-update-available.svg ├── nwg-update-checking.svg ├── nwg-update-noupdate.svg ├── nwg-workspace.svg ├── nwg_shell_config ├── __about__.py ├── __init__.py ├── autotiling.py ├── autotranslate.py ├── autotranslate │ ├── ar_EG │ ├── ca_ES │ ├── de_AT │ ├── de_DE │ ├── en_US │ ├── es_AR │ ├── es_ES │ ├── fr_FR │ ├── it_IT │ ├── nl_NL │ ├── pl_PL │ ├── pt_BR │ ├── ru_RU │ └── tr_TR ├── dialog.py ├── dialog │ ├── ca_ES │ ├── de_AT │ ├── de_DE │ ├── en_AR │ ├── en_US │ ├── es_ES │ ├── fr_FR │ ├── it_IT │ ├── nl_NL │ ├── pl_PL │ ├── pt_BR │ ├── pt_PT │ ├── ru_RU │ └── tr_TR ├── glade │ └── form.glade ├── help.py ├── hud.py ├── hud │ ├── config.json │ └── style.css ├── langs │ ├── de_DE.json │ ├── en_US.json │ ├── fr_FR.json │ ├── it_IT.json │ ├── nl_NL.json │ ├── pl_PL.json │ ├── pt_BR.json │ ├── sv_SE.json │ └── zh_CN.json ├── locker.py ├── main.py ├── main_hyprland.py ├── main_sway.py ├── screenshot_applet.py ├── shell │ ├── custom │ ├── custom-hyprland │ ├── help-hyprland.pango │ ├── help-sway.pango │ ├── hyprland-0 │ ├── hyprland-1 │ ├── hyprland-2 │ ├── hyprland-3 │ ├── preset-0 │ ├── preset-1 │ ├── preset-2 │ ├── preset-3 │ ├── settings │ └── settings-hyprland ├── tools.py ├── translate.py ├── ui_components.py ├── update_indicator.py └── updates │ ├── 0.2.5 │ ├── 0.3.0 │ ├── 0.3.4 │ └── 0.5.0 ├── setup.py ├── uninstall.sh └── venomupdates /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/install.sh -------------------------------------------------------------------------------- /nwg-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg-1.svg -------------------------------------------------------------------------------- /nwg-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg-2.svg -------------------------------------------------------------------------------- /nwg-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg-3.svg -------------------------------------------------------------------------------- /nwg-screenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg-screenshot.svg -------------------------------------------------------------------------------- /nwg-shell-config.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg-shell-config.desktop -------------------------------------------------------------------------------- /nwg-shell-config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg-shell-config.svg -------------------------------------------------------------------------------- /nwg-shell-translate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg-shell-translate.svg -------------------------------------------------------------------------------- /nwg-shell-update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg-shell-update.svg -------------------------------------------------------------------------------- /nwg-system-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg-system-update -------------------------------------------------------------------------------- /nwg-update-available.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg-update-available.svg -------------------------------------------------------------------------------- /nwg-update-checking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg-update-checking.svg -------------------------------------------------------------------------------- /nwg-update-noupdate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg-update-noupdate.svg -------------------------------------------------------------------------------- /nwg-workspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg-workspace.svg -------------------------------------------------------------------------------- /nwg_shell_config/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/__about__.py -------------------------------------------------------------------------------- /nwg_shell_config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nwg_shell_config/autotiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotiling.py -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate.py -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/ar_EG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/ar_EG -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/ca_ES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/ca_ES -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/de_AT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/de_AT -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/de_DE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/de_DE -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/en_US: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/en_US -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/es_AR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/es_AR -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/es_ES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/es_ES -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/fr_FR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/fr_FR -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/it_IT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/it_IT -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/nl_NL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/nl_NL -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/pl_PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/pl_PL -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/pt_BR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/pt_BR -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/ru_RU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/ru_RU -------------------------------------------------------------------------------- /nwg_shell_config/autotranslate/tr_TR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/autotranslate/tr_TR -------------------------------------------------------------------------------- /nwg_shell_config/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog.py -------------------------------------------------------------------------------- /nwg_shell_config/dialog/ca_ES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/ca_ES -------------------------------------------------------------------------------- /nwg_shell_config/dialog/de_AT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/de_AT -------------------------------------------------------------------------------- /nwg_shell_config/dialog/de_DE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/de_DE -------------------------------------------------------------------------------- /nwg_shell_config/dialog/en_AR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/en_AR -------------------------------------------------------------------------------- /nwg_shell_config/dialog/en_US: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/en_US -------------------------------------------------------------------------------- /nwg_shell_config/dialog/es_ES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/es_ES -------------------------------------------------------------------------------- /nwg_shell_config/dialog/fr_FR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/fr_FR -------------------------------------------------------------------------------- /nwg_shell_config/dialog/it_IT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/it_IT -------------------------------------------------------------------------------- /nwg_shell_config/dialog/nl_NL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/nl_NL -------------------------------------------------------------------------------- /nwg_shell_config/dialog/pl_PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/pl_PL -------------------------------------------------------------------------------- /nwg_shell_config/dialog/pt_BR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/pt_BR -------------------------------------------------------------------------------- /nwg_shell_config/dialog/pt_PT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/pt_PT -------------------------------------------------------------------------------- /nwg_shell_config/dialog/ru_RU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/ru_RU -------------------------------------------------------------------------------- /nwg_shell_config/dialog/tr_TR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/dialog/tr_TR -------------------------------------------------------------------------------- /nwg_shell_config/glade/form.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/glade/form.glade -------------------------------------------------------------------------------- /nwg_shell_config/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/help.py -------------------------------------------------------------------------------- /nwg_shell_config/hud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/hud.py -------------------------------------------------------------------------------- /nwg_shell_config/hud/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/hud/config.json -------------------------------------------------------------------------------- /nwg_shell_config/hud/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/hud/style.css -------------------------------------------------------------------------------- /nwg_shell_config/langs/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/langs/de_DE.json -------------------------------------------------------------------------------- /nwg_shell_config/langs/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/langs/en_US.json -------------------------------------------------------------------------------- /nwg_shell_config/langs/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/langs/fr_FR.json -------------------------------------------------------------------------------- /nwg_shell_config/langs/it_IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/langs/it_IT.json -------------------------------------------------------------------------------- /nwg_shell_config/langs/nl_NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/langs/nl_NL.json -------------------------------------------------------------------------------- /nwg_shell_config/langs/pl_PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/langs/pl_PL.json -------------------------------------------------------------------------------- /nwg_shell_config/langs/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/langs/pt_BR.json -------------------------------------------------------------------------------- /nwg_shell_config/langs/sv_SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/langs/sv_SE.json -------------------------------------------------------------------------------- /nwg_shell_config/langs/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/langs/zh_CN.json -------------------------------------------------------------------------------- /nwg_shell_config/locker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/locker.py -------------------------------------------------------------------------------- /nwg_shell_config/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/main.py -------------------------------------------------------------------------------- /nwg_shell_config/main_hyprland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/main_hyprland.py -------------------------------------------------------------------------------- /nwg_shell_config/main_sway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/main_sway.py -------------------------------------------------------------------------------- /nwg_shell_config/screenshot_applet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/screenshot_applet.py -------------------------------------------------------------------------------- /nwg_shell_config/shell/custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/custom -------------------------------------------------------------------------------- /nwg_shell_config/shell/custom-hyprland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/custom-hyprland -------------------------------------------------------------------------------- /nwg_shell_config/shell/help-hyprland.pango: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/help-hyprland.pango -------------------------------------------------------------------------------- /nwg_shell_config/shell/help-sway.pango: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/help-sway.pango -------------------------------------------------------------------------------- /nwg_shell_config/shell/hyprland-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/hyprland-0 -------------------------------------------------------------------------------- /nwg_shell_config/shell/hyprland-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/hyprland-1 -------------------------------------------------------------------------------- /nwg_shell_config/shell/hyprland-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/hyprland-2 -------------------------------------------------------------------------------- /nwg_shell_config/shell/hyprland-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/hyprland-3 -------------------------------------------------------------------------------- /nwg_shell_config/shell/preset-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/preset-0 -------------------------------------------------------------------------------- /nwg_shell_config/shell/preset-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/preset-1 -------------------------------------------------------------------------------- /nwg_shell_config/shell/preset-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/preset-2 -------------------------------------------------------------------------------- /nwg_shell_config/shell/preset-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/preset-3 -------------------------------------------------------------------------------- /nwg_shell_config/shell/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/settings -------------------------------------------------------------------------------- /nwg_shell_config/shell/settings-hyprland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/shell/settings-hyprland -------------------------------------------------------------------------------- /nwg_shell_config/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/tools.py -------------------------------------------------------------------------------- /nwg_shell_config/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/translate.py -------------------------------------------------------------------------------- /nwg_shell_config/ui_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/ui_components.py -------------------------------------------------------------------------------- /nwg_shell_config/update_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/update_indicator.py -------------------------------------------------------------------------------- /nwg_shell_config/updates/0.2.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/updates/0.2.5 -------------------------------------------------------------------------------- /nwg_shell_config/updates/0.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/updates/0.3.0 -------------------------------------------------------------------------------- /nwg_shell_config/updates/0.3.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/updates/0.3.4 -------------------------------------------------------------------------------- /nwg_shell_config/updates/0.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/nwg_shell_config/updates/0.5.0 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/setup.py -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/uninstall.sh -------------------------------------------------------------------------------- /venomupdates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-shell-config/HEAD/venomupdates --------------------------------------------------------------------------------