From fa169ab0b601c435354d43676929facc3df21575 Mon Sep 17 00:00:00 2001 From: amolinae06 Date: Wed, 16 Apr 2025 16:33:04 -0600 Subject: [PATCH] switched to hellwal --- .config/foot/foot.ini | 2 +- .config/fuzzel/fuzzel.ini | 2 +- .config/hellwal/templates/alphacolors.css | 45 + .config/hellwal/templates/colors | 21 + .config/hellwal/templates/colors-rgb | 21 + .config/hellwal/templates/colors.css | 26 + .config/hellwal/templates/colors.json | 29 + .config/hellwal/templates/colors.scss | 26 + .config/hellwal/templates/colors.vim | 21 + .config/hellwal/templates/discord-colors.css | 21 + .config/hellwal/templates/dwl-colors-bar.h | 9 + .config/hellwal/templates/dwl-colors.h | 6 + .config/hellwal/templates/foot-colors.ini | 23 + .config/hellwal/templates/fuzzel-colors.ini | 11 + .config/hellwal/templates/hellwm.lua | 21 + .../hellwal/templates/hyprland-colors.conf | 19 + .config/hellwal/templates/mako-colors | 3 + .config/hellwal/templates/rofi.rasi | 167 ++ .config/hellwal/templates/terminal.sh | 31 + .config/hellwal/templates/variables.sh | 35 + .config/hellwal/templates/variablesfish.fish | 35 + .config/hellwal/templates/waybar-colors.css | 21 + .config/hellwal/templates/zathura-colors | 34 + .config/mako/config | 2 +- .config/swaylock/config | 4 +- .config/tofi/config | 20 - .config/tofi/configfs | 15 - .config/tofi/configsq | 21 - .config/wal/templates/colors-foot.ini | 19 - .config/wal/templates/colors-fuzzel.ini | 11 - .config/wal/templates/colors-hyprland.conf | 10 - .config/wal/templates/colors-mako | 3 - .config/wal/templates/colors-tofi | 4 - .config/wal/templates/colors-wal-dwl.h | 14 - .config/wal/templates/colors-zathura | 34 - .config/wal/templates/colors-zathura-bak1 | 20 - .config/wal/templates/darkreader.json | 56 - .config/zathura/zathurarc | 2 +- .config/zsh/.zcompdump | 1518 ----------------- .config/zsh/.zshrc | 12 +- 40 files changed, 633 insertions(+), 1761 deletions(-) create mode 100644 .config/hellwal/templates/alphacolors.css create mode 100644 .config/hellwal/templates/colors create mode 100644 .config/hellwal/templates/colors-rgb create mode 100644 .config/hellwal/templates/colors.css create mode 100644 .config/hellwal/templates/colors.json create mode 100644 .config/hellwal/templates/colors.scss create mode 100644 .config/hellwal/templates/colors.vim create mode 100644 .config/hellwal/templates/discord-colors.css create mode 100644 .config/hellwal/templates/dwl-colors-bar.h create mode 100644 .config/hellwal/templates/dwl-colors.h create mode 100644 .config/hellwal/templates/foot-colors.ini create mode 100644 .config/hellwal/templates/fuzzel-colors.ini create mode 100644 .config/hellwal/templates/hellwm.lua create mode 100644 .config/hellwal/templates/hyprland-colors.conf create mode 100644 .config/hellwal/templates/mako-colors create mode 100644 .config/hellwal/templates/rofi.rasi create mode 100644 .config/hellwal/templates/terminal.sh create mode 100644 .config/hellwal/templates/variables.sh create mode 100644 .config/hellwal/templates/variablesfish.fish create mode 100644 .config/hellwal/templates/waybar-colors.css create mode 100644 .config/hellwal/templates/zathura-colors delete mode 100644 .config/tofi/config delete mode 100644 .config/tofi/configfs delete mode 100644 .config/tofi/configsq delete mode 100644 .config/wal/templates/colors-foot.ini delete mode 100644 .config/wal/templates/colors-fuzzel.ini delete mode 100644 .config/wal/templates/colors-hyprland.conf delete mode 100644 .config/wal/templates/colors-mako delete mode 100644 .config/wal/templates/colors-tofi delete mode 100644 .config/wal/templates/colors-wal-dwl.h delete mode 100644 .config/wal/templates/colors-zathura delete mode 100644 .config/wal/templates/colors-zathura-bak1 delete mode 100644 .config/wal/templates/darkreader.json delete mode 100644 .config/zsh/.zcompdump diff --git a/.config/foot/foot.ini b/.config/foot/foot.ini index 492370f..1be005d 100644 --- a/.config/foot/foot.ini +++ b/.config/foot/foot.ini @@ -5,7 +5,7 @@ title=foot font=Inconsolata letter-spacing=0 dpi-aware=yes -include = ~/.cache/wal/colors-foot.ini +include = ~/.cache/hellwal/foot-colors.ini [colors] alpha=0.85 diff --git a/.config/fuzzel/fuzzel.ini b/.config/fuzzel/fuzzel.ini index a0b1341..8619750 100644 --- a/.config/fuzzel/fuzzel.ini +++ b/.config/fuzzel/fuzzel.ini @@ -9,7 +9,7 @@ terminal=footclient -e prompt="> " show-actions=yes exit-on-keyboard-focus-loss=yes -include = ~/.cache/wal/colors-fuzzel.ini +include = ~/.cache/hellwal/fuzzel-colors.ini [border] radius=0 diff --git a/.config/hellwal/templates/alphacolors.css b/.config/hellwal/templates/alphacolors.css new file mode 100644 index 0000000..d91be0b --- /dev/null +++ b/.config/hellwal/templates/alphacolors.css @@ -0,0 +1,45 @@ +/* Generated by hellwal - example how to use alpha*/ +:root { + --wallpaper: url("%%wallpaper%%"); + + --background: #%%background%%; + --foreground: #%%foreground%%; + --cursor: #%%cursor%%; + --border: #%%border%%; + + --color0: #%%color0.hex%%; + --color1: #%%color1.hex%%; + --color2: #%%color2.hex%%; + --color3: #%%color3.hex%%; + --color4: #%%color4.hex%%; + + --color0a: #%%color0 alpha=0.8 %%; + --color1a: #%%color1.hex alpha=0.8 %%; + --color14a: #%%color14 alpha=0.3 %%; + --color15a: #%%color15.hex alpha=0.3 %%; + + --color0rgb: rgb(%%color0.rgb%%); + --color1rgb: rgb(%%color1.rgb%%); + --color2rgb: rgb(%%color2.rgb%%); + --color3rgb: rgb(%%color3.rgb%%); + --color4rgb: rgb(%%color4.rgb%%); + + --color0rgba: rgba(%%color0.rgb alpha=.9%%); + --color1rgba: rgba(%%color1.rgb alpha=.9%%); + --color2rgba: rgba(%%color2.rgb alpha=.9%%); + --color3rgba: rgba(%%color3.rgb alpha=.7%%); + --color4rgba: rgba(%%color4.rgb alpha=.7%%); +} + + + + + + + + + + + + + diff --git a/.config/hellwal/templates/colors b/.config/hellwal/templates/colors new file mode 100644 index 0000000..e203dea --- /dev/null +++ b/.config/hellwal/templates/colors @@ -0,0 +1,21 @@ +#%% background.hex %% +#%% foreground.hex %% +#%% cursor.hex %% +#%% border.hex %% + +#%% color0.hex %% +#%% color1.hex %% +#%% color2.hex %% +#%% color3.hex %% +#%% color4.hex %% +#%% color5.hex %% +#%% color6.hex %% +#%% color7.hex %% +#%% color8.hex %% +#%% color9.hex %% +#%% color10.hex %% +#%% color11.hex %% +#%% color12.hex %% +#%% color13.hex %% +#%% color14.hex %% +#%% color15.hex %% diff --git a/.config/hellwal/templates/colors-rgb b/.config/hellwal/templates/colors-rgb new file mode 100644 index 0000000..ffad49a --- /dev/null +++ b/.config/hellwal/templates/colors-rgb @@ -0,0 +1,21 @@ +%% background.rgb %% +%% foreground.rgb %% +%% cursor.rgb %% +%% border.rgb %% + +%% color0.rgb %% +%% color1.rgb %% +%% color2.rgb %% +%% color3.rgb %% +%% color4.rgb %% +%% color5.rgb %% +%% color6.rgb %% +%% color7.rgb %% +%% color8.rgb %% +%% color9.rgb %% +%% color10.rgb %% +%% color11.rgb %% +%% color12.rgb %% +%% color13.rgb %% +%% color14.rgb %% +%% color15.rgb %% diff --git a/.config/hellwal/templates/colors.css b/.config/hellwal/templates/colors.css new file mode 100644 index 0000000..4ec6b6e --- /dev/null +++ b/.config/hellwal/templates/colors.css @@ -0,0 +1,26 @@ +/* Generated by hellwal */ +:root { + --wallpaper: url("%%wallpaper%%"); + + --background: #%%background%%; + --foreground: #%%foreground%%; + --cursor: #%%cursor%%; + --border: #%%border%%; + + --color0: #%%color0.hex%%; + --color1: #%%color1.hex%%; + --color2: #%%color2.hex%%; + --color3: #%%color3.hex%%; + --color4: #%%color4.hex%%; + --color5: #%%color5.hex%%; + --color6: #%%color6.hex%%; + --color7: #%%color7.hex%%; + --color8: #%%color8.hex%%; + --color9: #%%color9.hex%%; + --color10: #%%color10.hex%%; + --color11: #%%color11.hex%%; + --color12: #%%color12.hex%%; + --color13: #%%color13.hex%%; + --color14: #%%color14.hex%%; + --color15: #%%color15.hex%%; +} diff --git a/.config/hellwal/templates/colors.json b/.config/hellwal/templates/colors.json new file mode 100644 index 0000000..cfa75d7 --- /dev/null +++ b/.config/hellwal/templates/colors.json @@ -0,0 +1,29 @@ +{ + "wallpaper": "%%wallpaper%%", + "alpha": "100", + + "special": { + "background": "#%%background%%", + "foreground": "#%%foreground%%", + "cursor": "#%%cursor%%", + "border": "#%%border%%" + }, + "colors": { + "color0": "#%%color0.hex%%", + "color1": "#%%color1.hex%%", + "color2": "#%%color2.hex%%", + "color3": "#%%color3.hex%%", + "color4": "#%%color4.hex%%", + "color5": "#%%color5.hex%%", + "color6": "#%%color6.hex%%", + "color7": "#%%color7.hex%%", + "color8": "#%%color8.hex%%", + "color9": "#%%color9.hex%%", + "color10": "#%%color10.hex%%", + "color11": "#%%color11.hex%%", + "color12": "#%%color12.hex%%", + "color13": "#%%color13.hex%%", + "color14": "#%%color14.hex%%", + "color15": "#%%color15.hex%%" + } +} diff --git a/.config/hellwal/templates/colors.scss b/.config/hellwal/templates/colors.scss new file mode 100644 index 0000000..00342f0 --- /dev/null +++ b/.config/hellwal/templates/colors.scss @@ -0,0 +1,26 @@ +// SCSS Variables +// Generated by 'hellwal' +$wallpaper: "%%wallpaper%%"; + +// Special +$background: #%%background%%; +$foreground: #%%foreground%%; +$cursor: #%%cursor%%; + +// Colors +$color0: #%%color0.hex%%; +$color1: #%%color1.hex%%; +$color2: #%%color2.hex%%; +$color3: #%%color3.hex%%; +$color4: #%%color4.hex%%; +$color5: #%%color5.hex%%; +$color6: #%%color6.hex%%; +$color7: #%%color7.hex%%; +$color8: #%%color8.hex%%; +$color9: #%%color9.hex%%; +$color10: #%%color10.hex%%; +$color11: #%%color11.hex%%; +$color12: #%%color12.hex%%; +$color13: #%%color13.hex%%; +$color14: #%%color14.hex%%; +$color15: #%%color15.hex%%; diff --git a/.config/hellwal/templates/colors.vim b/.config/hellwal/templates/colors.vim new file mode 100644 index 0000000..3302f29 --- /dev/null +++ b/.config/hellwal/templates/colors.vim @@ -0,0 +1,21 @@ +let g:hellwal_0 = '#%% color0.hex %%' +let g:hellwal_1 = '#%% color1.hex %%' +let g:hellwal_2 = '#%% color2.hex %%' +let g:hellwal_3 = '#%% color3.hex %%' +let g:hellwal_4 = '#%% color4.hex %%' +let g:hellwal_5 = '#%% color5.hex %%' +let g:hellwal_6 = '#%% color6.hex %%' +let g:hellwal_7 = '#%% color7.hex %%' +let g:hellwal_8 = '#%% color8.hex %%' +let g:hellwal_9 = '#%% color9.hex %%' +let g:hellwal_10 = '#%% color10.hex %%' +let g:hellwal_11 = '#%% color11.hex %%' +let g:hellwal_12 = '#%% color12.hex %%' +let g:hellwal_13 = '#%% color13.hex %%' +let g:hellwal_14 = '#%% color14.hex %%' +let g:hellwal_15 = '#%% color15.hex %%' + +let g:hellwal_background = '#%% background.hex %%' +let g:hellwal_foreground = '#%% foreground.hex %%' +let g:hellwal_border = '#%% border.hex %%' +let g:hellwal_cursor = '#%% cursor.hex %%' diff --git a/.config/hellwal/templates/discord-colors.css b/.config/hellwal/templates/discord-colors.css new file mode 100644 index 0000000..2bacfa5 --- /dev/null +++ b/.config/hellwal/templates/discord-colors.css @@ -0,0 +1,21 @@ +--background: #%% background.hex %%; +--foreground: #%% foreground.hex %%; +--cursor: #%% cursor.hex %%; +--border: #%% border.hex %%; + +--color0: #%% color0.hex %%; +--color1: #%% color1.hex %%; +--color2: #%% color2.hex %%; +--color3: #%% color3.hex %%; +--color4: #%% color4.hex %%; +--color5: #%% color5.hex %%; +--color6: #%% color6.hex %%; +--color7: #%% color7.hex %%; +--color8: #%% color8.hex %%; +--color9: #%% color9.hex %%; +--color10: #%% color10.hex %%; +--color11: #%% color11.hex %%; +--color12: #%% color12.hex %%; +--color13: #%% color13.hex %%; +--color14: #%% color14.hex %%; +--color15: #%% color15.hex %%; diff --git a/.config/hellwal/templates/dwl-colors-bar.h b/.config/hellwal/templates/dwl-colors-bar.h new file mode 100644 index 0000000..23de6b1 --- /dev/null +++ b/.config/hellwal/templates/dwl-colors-bar.h @@ -0,0 +1,9 @@ +#define WALLPAPER "%%wallpaper%%" + +static const float rootcolor[] = COLOR(0x%%color0.hex%%ff); +static uint32_t colors[][3] = { + /* fg bg border */ + [SchemeNorm] = { 0x%%color15.hex%%ff, 0x%%color0.hex%%ff, 0x%%color8.hex%%ff }, + [SchemeSel] = { 0x%%color15.hex%%ff, 0x%%color2.hex%%ff, 0x%%color1.hex%%ff }, + [SchemeUrg] = { 0x%%color15.hex%%ff, 0x%%color1.hex%%ff, 0x%%color2.hex%%ff }, +}; diff --git a/.config/hellwal/templates/dwl-colors.h b/.config/hellwal/templates/dwl-colors.h new file mode 100644 index 0000000..705fa2a --- /dev/null +++ b/.config/hellwal/templates/dwl-colors.h @@ -0,0 +1,6 @@ +#define WALLPAPER "%%wallpaper%%" + +static const float rootcolor[] = COLOR(0x%%color0.hex%%ff); +static const float bordercolor[] = COLOR(0x%%color2.hex%%ff); +static const float focuscolor[] = COLOR(0x%%color2.hex%%ff); +static const float urgentcolor[] = COLOR(0x%%color1.hex%%ff); diff --git a/.config/hellwal/templates/foot-colors.ini b/.config/hellwal/templates/foot-colors.ini new file mode 100644 index 0000000..6c18ed2 --- /dev/null +++ b/.config/hellwal/templates/foot-colors.ini @@ -0,0 +1,23 @@ +[colors] +background=%%background%% +foreground=%%foreground%% + +regular0=%%color0.hex%% +regular1=%%color1.hex%% +regular2=%%color2.hex%% +regular3=%%color3.hex%% +regular4=%%color4.hex%% +regular5=%%color5.hex%% +regular6=%%color6.hex%% +regular7=%%color7.hex%% +bright0=%%color8.hex%% +bright1=%%color9.hex%% +bright2=%%color10.hex%% +bright3=%%color11.hex%% +bright4=%%color12.hex%% +bright5=%%color13.hex%% +bright6=%%color14.hex%% +bright7=%%color15.hex%% + +[cursor] +color=%%cursor%% %%border%% diff --git a/.config/hellwal/templates/fuzzel-colors.ini b/.config/hellwal/templates/fuzzel-colors.ini new file mode 100644 index 0000000..d4c20c7 --- /dev/null +++ b/.config/hellwal/templates/fuzzel-colors.ini @@ -0,0 +1,11 @@ +[colors] +background=%%background.hex%%ff +prompt=%%foreground.hex%%ff +text=%%foreground.hex%%ff +placeholder=%%foreground.hex%%ff +input=%%foreground.hex%%ff +match=%%foreground.hex%%ff +selection=%%color1.hex%%ff +selection-text=%%background.hex%%ff +selection-match=%%foreground.hex%%ff +border=%%color1.hex%%ff diff --git a/.config/hellwal/templates/hellwm.lua b/.config/hellwal/templates/hellwm.lua new file mode 100644 index 0000000..d1170b4 --- /dev/null +++ b/.config/hellwal/templates/hellwm.lua @@ -0,0 +1,21 @@ +background = "#%% background.hex %%" +foreground = "#%% foreground.hex %%" +cursor = "#%% cursor.hex %%" +border = "#%% border.hex %%" + +color0 = "#%% color0.hex %%" +color1 = "#%% color1.hex %%" +color2 = "#%% color2.hex %%" +color3 = "#%% color3.hex %%" +color4 = "#%% color4.hex %%" +color5 = "#%% color5.hex %%" +color6 = "#%% color6.hex %%" +color7 = "#%% color7.hex %%" +color8 = "#%% color8.hex %%" +color9 = "#%% color9.hex %%" +color10 = "#%% color10.hex %%" +color11 = "#%% color11.hex %%" +color12 = "#%% color12.hex %%" +color13 = "#%% color13.hex %%" +color14 = "#%% color14.hex %%" +color15 = "#%% color15.hex %%" diff --git a/.config/hellwal/templates/hyprland-colors.conf b/.config/hellwal/templates/hyprland-colors.conf new file mode 100644 index 0000000..6534f6d --- /dev/null +++ b/.config/hellwal/templates/hyprland-colors.conf @@ -0,0 +1,19 @@ +$background = rgb(%%background%%) +$foreground = rgb(%%foreground%%) + +$color0 = rgb(%%color0%%) +$color1 = rgb(%%color1%%) +$color2 = rgb(%%color2%%) +$color3 = rgb(%%color3%%) +$color4 = rgb(%%color4%%) +$color5 = rgb(%%color5%%) +$color6 = rgb(%%color6%%) +$color7 = rgb(%%color7%%) +$color8 = rgb(%%color8%%) +$color9 = rgb(%%color9%%) +$color10 = rgb(%%color10%%) +$color11 = rgb(%%color11%%) +$color12 = rgb(%%color12%%) +$color13 = rgb(%%color13%%) +$color14 = rgb(%%color14%%) +$color15 = rgb(%%color15%%) diff --git a/.config/hellwal/templates/mako-colors b/.config/hellwal/templates/mako-colors new file mode 100644 index 0000000..d833126 --- /dev/null +++ b/.config/hellwal/templates/mako-colors @@ -0,0 +1,3 @@ +background-color=#%%background%% +text-color=#%%foreground%% +border-color=#%%color1%% diff --git a/.config/hellwal/templates/rofi.rasi b/.config/hellwal/templates/rofi.rasi new file mode 100644 index 0000000..bea87ae --- /dev/null +++ b/.config/hellwal/templates/rofi.rasi @@ -0,0 +1,167 @@ +* { + active-background: #%% color2.hex %%; + active-foreground: #%% foreground.hex %%; + normal-background: #%% background.hex %%; + normal-foreground: #%% foreground.hex %%; + urgent-background: #%% color1.hex %%; + urgent-foreground: #%% foreground.hex %%; + + alternate-active-background: #%% background.hex %%; + alternate-active-foreground: #%% foreground.hex %%; + alternate-normal-background: #%% background.hex %%; + alternate-normal-foreground: #%% foreground.hex %%; + alternate-urgent-background: #%% background.hex %%; + alternate-urgent-foreground: #%% foreground.hex %%; + + selected-active-background: #%% color1.hex %%; + selected-active-foreground: #%% foreground.hex %%; + selected-normal-background: #%% color2.hex %%; + selected-normal-foreground: #%% foreground.hex %%; + selected-urgent-background: #%% color3.hex %%; + selected-urgent-foreground: #%% foreground.hex %%; + + background-color: #%% background.hex %%; + background: #%% background.hex %%; + foreground: #%% foreground.hex %%; + border-color: @active-background; + spacing: 2; +} + +window { + background-color: @background; + border-color: @active-background; + border: 3; + padding: 2.5ch; +} + +mainbox { + border: 0; + padding: 0; +} + +message { + border: 2px 0px 0px; + border-color: @border-color; + padding: 1px; +} + +textbox { + text-color: @foreground; +} + +inputbar { + children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; +} + +textbox-prompt-colon { + expand: false; + str: ":"; + margin: 0px 0.3em 0em 0em; + text-color: @normal-foreground; +} + +listview { + fixed-height: 0; + border: 2px 0px 0px; + border-color: @border-color; + spacing: 2px; + scrollbar: true; + padding: 2px 0px 0px; +} + +element { + order: 0; + padding: 1px; +} + +element-text, element-icon { + background-color: inherit; + text-color: inherit; +} + +element.normal.normal { + background-color: @normal-background; + text-color: @normal-foreground; +} + +element.normal.urgent { + background-color: @urgent-background; + text-color: @urgent-foreground; +} + +element.normal.active { + background-color: @active-background; + text-color: @active-foreground; +} + +element.selected.normal { + background-color: @selected-normal-background; + text-color: @selected-normal-foreground; +} + +element.selected.urgent { + background-color: @selected-urgent-background; + text-color: @selected-urgent-foreground; +} + +element.selected.active { + background-color: @selected-active-background; + text-color: @selected-active-foreground; +} + +element.alternate.normal { + background-color: @alternate-normal-background; + text-color: @alternate-normal-foreground; +} + +element.alternate.urgent { + background-color: @alternate-urgent-background; + text-color: @alternate-urgent-foreground; +} + +element.alternate.active { + background-color: @alternate-active-background; + text-color: @alternate-active-foreground; +} + +scrollbar { + width: 4px; + border: 0; + handle-width: 8px; + padding: 0; +} + +sidebar { + border: 2px 0px 0px; + border-color: @border-color; +} + +button { + text-color: @normal-foreground; +} + +button.selected { + background-color: @selected-normal-background; + text-color: @selected-normal-foreground; +} + +inputbar { + spacing: 0; + text-color: @normal-foreground; + padding: 1px; +} + +case-indicator { + spacing: 0; + text-color: @normal-foreground; +} + +entry { + spacing: 0; + text-color: @normal-foreground; +} + +prompt { + spacing: 0; + text-color: @normal-foreground; +} diff --git a/.config/hellwal/templates/terminal.sh b/.config/hellwal/templates/terminal.sh new file mode 100644 index 0000000..e5a979f --- /dev/null +++ b/.config/hellwal/templates/terminal.sh @@ -0,0 +1,31 @@ +# Set term colors script - Generated by hellwal + +# Colors from 0-15 +printf "\033]4;0;#%%color0.hex%%\033\\" +printf "\033]4;1;#%%color1.hex%%\033\\" +printf "\033]4;2;#%%color2.hex%%\033\\" +printf "\033]4;3;#%%color3.hex%%\033\\" +printf "\033]4;4;#%%color4.hex%%\033\\" +printf "\033]4;5;#%%color5.hex%%\033\\" +printf "\033]4;6;#%%color6.hex%%\033\\" +printf "\033]4;7;#%%color7.hex%%\033\\" +printf "\033]4;8;#%%color8.hex%%\033\\" +printf "\033]4;9;#%%color9.hex%%\033\\" +printf "\033]4;10;#%%color10.hex%%\033\\" +printf "\033]4;11;#%%color11.hex%%\033\\" +printf "\033]4;12;#%%color12.hex%%\033\\" +printf "\033]4;13;#%%color13.hex%%\033\\" +printf "\033]4;14;#%%color14.hex%%\033\\" +printf "\033]4;15;#%%color15.hex%%\033\\" + +# Background +printf "\033]11;#%%background%%\033\\"; + +# Foreground +printf "\033]10;#%%foreground%%\033\\"; + +# Cursor +printf "\033]12;#%%cursor%%\033\\"; + +# Border +printf "\033]7044;#%%border%%\033\\"; diff --git a/.config/hellwal/templates/variables.sh b/.config/hellwal/templates/variables.sh new file mode 100644 index 0000000..8771945 --- /dev/null +++ b/.config/hellwal/templates/variables.sh @@ -0,0 +1,35 @@ +# Generated by hellwal + +wallpaper='%%wallpaper%%' + +background='%%background%%' +foreground='%%foreground%%' +cursor='%%cursor%%' +border='%%border%%' + +color0='%%color0.hex%%' +color1='%%color1.hex%%' +color2='%%color2.hex%%' +color3='%%color3.hex%%' +color4='%%color4.hex%%' +color5='%%color5.hex%%' +color6='%%color6.hex%%' +color7='%%color7.hex%%' +color8='%%color8.hex%%' +color9='%%color9.hex%%' +color10='%%color10.hex%%' +color11='%%color11.hex%%' +color12='%%color12.hex%%' +color13='%%color13.hex%%' +color14='%%color14.hex%%' +color15='%%color15.hex%%' + +# FZF colors +export FZF_DEFAULT_OPTS=" + $FZF_DEFAULT_OPTS + --color fg:7,bg:0,hl:1,fg+:232,bg+:1,hl+:255 + --color info:7,prompt:2,spinner:1,pointer:232,marker:1 +" + +# Fix LS_COLORS being unreadable. +export LS_COLORS="${LS_COLORS}:su=30;41:ow=30;42:st=30;44:" diff --git a/.config/hellwal/templates/variablesfish.fish b/.config/hellwal/templates/variablesfish.fish new file mode 100644 index 0000000..84074c2 --- /dev/null +++ b/.config/hellwal/templates/variablesfish.fish @@ -0,0 +1,35 @@ +# Generated by hellwal + +set wallpaper '%%wallpaper%%' + +set background '%%background%%' +set foreground '%%foreground%%' +set cursor '%%cursor%%' +set border '%%border%%' + +set color0 '%%color0.hex%%' +set color1 '%%color1.hex%%' +set color2 '%%color2.hex%%' +set color3 '%%color3.hex%%' +set color4 '%%color4.hex%%' +set color5 '%%color5.hex%%' +set color6 '%%color6.hex%%' +set color7 '%%color7.hex%%' +set color8 '%%color8.hex%%' +set color9 '%%color9.hex%%' +set color10 '%%color10.hex%%' +set color11 '%%color11.hex%%' +set color12 '%%color12.hex%%' +set color13 '%%color13.hex%%' +set color14 '%%color14.hex%%' +set color15 '%%color15.hex%%' + +# FZF colors +export FZF_DEFAULT_OPTS=" + $FZF_DEFAULT_OPTS + --color fg:7,bg:0,hl:1,fg+:232,bg+:1,hl+:255 + --color info:7,prompt:2,spinner:1,pointer:232,marker:1 +" + +# Fix LS_COLORS being unreadable. +export LS_COLORS="$LS_COLORS:su=30;41:ow=30;42:st=30;44:" diff --git a/.config/hellwal/templates/waybar-colors.css b/.config/hellwal/templates/waybar-colors.css new file mode 100644 index 0000000..8b7a9f5 --- /dev/null +++ b/.config/hellwal/templates/waybar-colors.css @@ -0,0 +1,21 @@ +@define-color background #%%background%%; +@define-color foreground #%%foreground%%; +@define-color cursor #%%cursor%%; +@define-color border #%%border%%; + +@define-color color0 #%%color0.hex%%; +@define-color color1 #%%color1.hex%%; +@define-color color2 #%%color2.hex%%; +@define-color color3 #%%color3.hex%%; +@define-color color4 #%%color4.hex%%; +@define-color color5 #%%color5.hex%%; +@define-color color6 #%%color6.hex%%; +@define-color color7 #%%color7.hex%%; +@define-color color8 #%%color8.hex%%; +@define-color color9 #%%color9.hex%%; +@define-color color10 #%%color10.hex%%; +@define-color color11 #%%color11.hex%%; +@define-color color12 #%%color12.hex%%; +@define-color color13 #%%color13.hex%%; +@define-color color14 #%%color14.hex%%; +@define-color color15 #%%color15.hex%%; diff --git a/.config/hellwal/templates/zathura-colors b/.config/hellwal/templates/zathura-colors new file mode 100644 index 0000000..28c7e2d --- /dev/null +++ b/.config/hellwal/templates/zathura-colors @@ -0,0 +1,34 @@ +set recolor "true" +set recolor-keephue "true" + +set completion-bg "#%%background%%" +set completion-fg "#%%foreground%%" +set completion-group-bg "#%%background%%" +set completion-group-fg "#%%color2%%" +set completion-highlight-bg "#%%foreground%%" +set completion-highlight-fg "#%%background%%" + +set recolor-lightcolor "#%%background%%" +set recolor-darkcolor "#%%foreground%%" +set default-bg "#%%background%%" + +set inputbar-bg "#%%background%%" +set inputbar-fg "#%%foreground%%" +set notification-bg "#%%background%%" +set notification-fg "#%%foreground%%" +set notification-error-bg "#%%color1%%" +set notification-error-fg "#%%foreground%%" +set notification-warning-bg "#%%color1%%" +set notification-warning-fg "#%%foreground%%" +set statusbar-bg "#%%background%%" +set statusbar-fg "#%%foreground%%" +set index-bg "#%%background%%" +set index-fg "#%%foreground%%" +set index-active-bg "#%%foreground%%" +set index-active-fg "#%%background%%" +set render-loading-bg "#%%background%%" +set render-loading-fg "#%%foreground%%" + +set window-title-home-tilde true +set statusbar-basename true +set selection-clipboard clipboard diff --git a/.config/mako/config b/.config/mako/config index 395740c..bd83565 100644 --- a/.config/mako/config +++ b/.config/mako/config @@ -1,4 +1,4 @@ -include=/home/amolinae/.cache/wal/colors-mako +include=/home/amolinae/.cache/hellwal/mako-colors sort=-time layer=top width=300 diff --git a/.config/swaylock/config b/.config/swaylock/config index cda2360..c2d6449 100644 --- a/.config/swaylock/config +++ b/.config/swaylock/config @@ -1,6 +1,8 @@ -image="$HOME/Pictures/Wallpapers/vatihall.jpg" +image="$HOME/Pictures/desktop.png" clock indicator ignore-empty-password hide-keyboard-layout disable-caps-lock-text +effect-blur=4x2 +effect-greyscale diff --git a/.config/tofi/config b/.config/tofi/config deleted file mode 100644 index 8d48f36..0000000 --- a/.config/tofi/config +++ /dev/null @@ -1,20 +0,0 @@ -include = /home/amolinae/.cache/wal/colors-tofi - -drun-launch=true -font = "Inconsolata" -font-size = 11 -anchor = top -width = 100% -height = 30 -horizontal = true -prompt-text = " run: " -outline-width = 0 -border-width = 0 -min-input-width = 120 -result-spacing = 15 -padding-top = 0 -padding-bottom = 0 -padding-left = 0 -padding-right = 0 -auto-accept-single = false -require-match = true diff --git a/.config/tofi/configfs b/.config/tofi/configfs deleted file mode 100644 index 5da1125..0000000 --- a/.config/tofi/configfs +++ /dev/null @@ -1,15 +0,0 @@ -include = /home/amolinae/.cache/wal/colors-tofi - -prompt-text = "" -width = 100% -height = 100% -border-width = 0 -outline-width = 0 -padding-left = 35% -padding-top = 35% -result-spacing = 25 -num-results = 5 -font = Inconsolata -font-size = 32 -text-color = #FFFFFF -hide-cursor = true diff --git a/.config/tofi/configsq b/.config/tofi/configsq deleted file mode 100644 index 1e8a9b8..0000000 --- a/.config/tofi/configsq +++ /dev/null @@ -1,21 +0,0 @@ -include = /home/amolinae/.cache/wal/colors-tofi - -font = "Inconsolata" -font-size = 14 -hint-font = true -prompt-text = "" -anchor = center -width = 25% -height = 25% -horizontal = false -outline-width = 0 -border-width = 2 -min-input-width = 120 -result-spacing = 15 -padding-top = 8 -padding-bottom = 8 -padding-left = 8 -padding-right = 8 -multi-instance = false -auto-accept-single = false -require-match = true diff --git a/.config/wal/templates/colors-foot.ini b/.config/wal/templates/colors-foot.ini deleted file mode 100644 index 16942f3..0000000 --- a/.config/wal/templates/colors-foot.ini +++ /dev/null @@ -1,19 +0,0 @@ -[colors] -background={background.strip} -foreground={foreground.strip} -regular0={color0.strip} -regular1={color1.strip} -regular2={color2.strip} -regular3={color3.strip} -regular4={color4.strip} -regular5={color5.strip} -regular6={color6.strip} -regular7={color7.strip} -bright0={color8.strip} -bright1={color9.strip} -bright2={color10.strip} -bright3={color11.strip} -bright4={color12.strip} -bright5={color13.strip} -bright6={color14.strip} -bright7={color15.strip} diff --git a/.config/wal/templates/colors-fuzzel.ini b/.config/wal/templates/colors-fuzzel.ini deleted file mode 100644 index a99fb3c..0000000 --- a/.config/wal/templates/colors-fuzzel.ini +++ /dev/null @@ -1,11 +0,0 @@ -[colors] -background={background.strip}ff -prompt={foreground.strip}ff -text={foreground.strip}ff -placeholder={foreground.strip}ff -input={foreground.strip}ff -match={foreground.strip}ff -selection={color1.strip}ff -selection-text={background.strip}ff -selection-match={foreground.strip}ff -border={color1.strip}ff diff --git a/.config/wal/templates/colors-hyprland.conf b/.config/wal/templates/colors-hyprland.conf deleted file mode 100644 index 541d151..0000000 --- a/.config/wal/templates/colors-hyprland.conf +++ /dev/null @@ -1,10 +0,0 @@ -$color0 = rgb({color0.strip}) -$color1 = rgb({color1.strip}) -$color2 = rgb({color2.strip}) -$color3 = rgb({color3.strip}) -$color4 = rgb({color4.strip}) -$color5 = rgb({color5.strip}) -$color6 = rgb({color6.strip}) -$color7 = rgb({color7.strip}) -$color8 = rgb({color8.strip}) -$wallpaper = "{wallpaper}" diff --git a/.config/wal/templates/colors-mako b/.config/wal/templates/colors-mako deleted file mode 100644 index c75576a..0000000 --- a/.config/wal/templates/colors-mako +++ /dev/null @@ -1,3 +0,0 @@ -background-color={background} -text-color={foreground} -border-color={color1} diff --git a/.config/wal/templates/colors-tofi b/.config/wal/templates/colors-tofi deleted file mode 100644 index e735183..0000000 --- a/.config/wal/templates/colors-tofi +++ /dev/null @@ -1,4 +0,0 @@ -background-color = {background.strip} -border-color = {color1.strip} -selection-color = {color1.strip} -text-color = {foreground.strip} diff --git a/.config/wal/templates/colors-wal-dwl.h b/.config/wal/templates/colors-wal-dwl.h deleted file mode 100644 index 55b9301..0000000 --- a/.config/wal/templates/colors-wal-dwl.h +++ /dev/null @@ -1,14 +0,0 @@ -#define WALLPAPER "{wallpaper}" -/* Taken from https://github.com/djpohly/dwl/issues/466 */ -#define COLOR(hex) {{ ((hex >> 24) & 0xFF) / 255.0f, \ - ((hex >> 16) & 0xFF) / 255.0f, \ - ((hex >> 8) & 0xFF) / 255.0f, \ - (hex & 0xFF) / 255.0f }} - -static const float rootcolor[] = COLOR(0x{color0.strip}ff); -static uint32_t colors[][3] = {{ - /* fg bg border */ - [SchemeNorm] = {{ 0x{color15.strip}ff, 0x{color0.strip}ff, 0x{color8.strip}ff }}, - [SchemeSel] = {{ 0x{color15.strip}ff, 0x{color2.strip}ff, 0x{color1.strip}ff }}, - [SchemeUrg] = {{ 0x{color15.strip}ff, 0x{color1.strip}ff, 0x{color2.strip}ff }}, -}}; diff --git a/.config/wal/templates/colors-zathura b/.config/wal/templates/colors-zathura deleted file mode 100644 index f9e3ca8..0000000 --- a/.config/wal/templates/colors-zathura +++ /dev/null @@ -1,34 +0,0 @@ -set recolor "true" -set recolor-keephue "true" - -set completion-bg "{background}" -set completion-fg "{foreground}" -set completion-group-bg "{background}" -set completion-group-fg "{color2}" -set completion-highlight-bg "{foreground}" -set completion-highlight-fg "{background}" - -set recolor-lightcolor "{background}" -set recolor-darkcolor "{foreground}" -set default-bg "{background}" - -set inputbar-bg "{background}" -set inputbar-fg "{foreground}" -set notification-bg "{background}" -set notification-fg "{foreground}" -set notification-error-bg "{color1}" -set notification-error-fg "{foreground}" -set notification-warning-bg "{color1}" -set notification-warning-fg "{foreground}" -set statusbar-bg "{background}" -set statusbar-fg "{foreground}" -set index-bg "{background}" -set index-fg "{foreground}" -set index-active-bg "{foreground}" -set index-active-fg "{background}" -set render-loading-bg "{background}" -set render-loading-fg "{foreground}" - -set window-title-home-tilde true -set statusbar-basename true -set selection-clipboard clipboard diff --git a/.config/wal/templates/colors-zathura-bak1 b/.config/wal/templates/colors-zathura-bak1 deleted file mode 100644 index 74f4a01..0000000 --- a/.config/wal/templates/colors-zathura-bak1 +++ /dev/null @@ -1,20 +0,0 @@ -set default-bg "{background}" -set default-fg "{foreground}" -set statusbar-bg "{background}" -set statusbar-fg "{foreground}" -set inputbar-bg "{background}" -set inputbar-fg "{foreground}" -set notification-bg "{background}" -set notification-fg "{foreground}" -set notification-error-bg "{background}" -set notification-error-fg "{foreground}" -set notification-warning-bg "{background}" -set notification-warning-fg "{foreground}" -set highlight-color "{color3}" -set highlight-active-color "{color6}" -set completion-bg "{color3}" -set completion-fg "{color6}" -set completion-highlight-bg "{color3}" -set completion-highlight-fg "{color6}" -set recolor-lightcolor "{background}" -set recolor-darkcolor "{foreground}" diff --git a/.config/wal/templates/darkreader.json b/.config/wal/templates/darkreader.json deleted file mode 100644 index 3e83eb0..0000000 --- a/.config/wal/templates/darkreader.json +++ /dev/null @@ -1,56 +0,0 @@ -{{ - "schemeVersion": 2, - "enabled": true, - "fetchNews": true, - "theme": {{ - "mode": 1, - "brightness": 100, - "contrast": 100, - "grayscale": 0, - "sepia": 0, - "useFont": false, - "fontFamily": "Open Sans", - "textStroke": 0, - "engine": "dynamicTheme", - "stylesheet": "", - "darkSchemeBackgroundColor": "{color0}", - "darkSchemeTextColor": "{color15}", - "lightSchemeBackgroundColor": "#{color0.lighten(15%)}", - "lightSchemeTextColor": "{color15}", - "scrollbarColor": "auto", - "selectionColor": "auto", - "styleSystemControls": false, - "lightColorScheme": "Default", - "darkColorScheme": "Default", - "immediateModify": false - }}, - "presets": [], - "customThemes": [], - "enabledByDefault": true, - "enabledFor": [], - "disabledFor": [], - "changeBrowserTheme": false, - "syncSettings": true, - "syncSitesFixes": true, - "automation": {{ - "enabled": false, - "mode": "", - "behavior": "OnOff" - }}, - "time": {{ - "activation": "18:00", - "deactivation": "9:00" - }}, - "location": {{ - "latitude": null, - "longitude": null - }}, - "previewNewDesign": true, - "enableForPDF": true, - "enableForProtectedPages": true, - "enableContextMenus": false, - "detectDarkTheme": false, - "displayedNews": [ - "thanks-2023" - ] -}} diff --git a/.config/zathura/zathurarc b/.config/zathura/zathurarc index 2816825..028d6e3 100644 --- a/.config/zathura/zathurarc +++ b/.config/zathura/zathurarc @@ -2,4 +2,4 @@ set selection-clipboard clipboard map D set "first-page-column 1:1" map set "first-page-column 1:2" -include /home/amolinae/.cache/wal/colors-zathura +include /home/amolinae/.cache/hellwal/zathura-colors diff --git a/.config/zsh/.zcompdump b/.config/zsh/.zcompdump deleted file mode 100644 index 8f13392..0000000 --- a/.config/zsh/.zcompdump +++ /dev/null @@ -1,1518 +0,0 @@ -#files: 695 version: 5.9 - -_comps=( -'-' '_precommand' -'-array-value-' '_value' -'-assign-parameter-' '_assign' -'-brace-parameter-' '_brace_parameter' -'-command-' '_autocd' -'-command-line-' '_normal' -'-condition-' '_condition' -'-default-' '_default' -'-equal-' '_equal' -'-first-' '_first' -'-math-' '_math' -'-parameter-' '_parameter' -'-redirect-' '_redirect' -'-redirect-,-default-,-default-' '_files' -'-redirect-,<,bunzip2' '_bzip2' -'-redirect-,<,bzip2' '_bzip2' -'-redirect-,<,compress' '_compress' -'-redirect-,<,gunzip' '_gzip' -'-redirect-,<,gzip' '_gzip' -'-redirect-,<,uncompress' '_compress' -'-redirect-,<,unxz' '_xz' -'-redirect-,<,xz' '_xz' -'-redirect-,>,bzip2' '_bzip2' -'-redirect-,>,compress' '_compress' -'-redirect-,>,gzip' '_gzip' -'-redirect-,>,xz' '_xz' -'-subscript-' '_subscript' -'-tilde-' '_tilde' -'-value-' '_value' -'-value-,-default-,-command-' '_zargs' -'-value-,-default-,-default-' '_value' -'-value-,ANSIBLE_INVENTORY_ENABLED,-default-' '_ansible' -'-value-,ANSIBLE_STDOUT_CALLBACK,-default-' '_ansible' -'-value-,ANT_ARGS,-default-' '_ant' -'-value-,DISPLAY,-default-' '_x_display' -'-value-,GREP_OPTIONS,-default-' '_grep' -'-value-,GZIP,-default-' '_gzip' -'-value-,LANG,-default-' '_locales' -'-value-,LANGUAGE,-default-' '_locales' -'-value-,LD_DEBUG,-default-' '_ld_debug' -'-value-,LESS,-default-' '_less' -'-value-,LESSCHARSET,-default-' '_less' -'-value-,LOOPDEV_DEBUG,-default-' '_losetup' -'-value-,LPDEST,-default-' '_printers' -'-value-,MPD_HOST,-default' '_mpc' -'-value-,PERLDOC,-default-' '_perldoc' -'-value-,PRINTER,-default-' '_printers' -'-value-,PROMPT,-default-' '_ps1234' -'-value-,PROMPT2,-default-' '_ps1234' -'-value-,PROMPT3,-default-' '_ps1234' -'-value-,PROMPT4,-default-' '_ps1234' -'-value-,PS1,-default-' '_ps1234' -'-value-,PS2,-default-' '_ps1234' -'-value-,PS3,-default-' '_ps1234' -'-value-,PS4,-default-' '_ps1234' -'-value-,RPROMPT,-default-' '_ps1234' -'-value-,RPROMPT2,-default-' '_ps1234' -'-value-,RPS1,-default-' '_ps1234' -'-value-,RPS2,-default-' '_ps1234' -'-value-,SPROMPT,-default-' '_ps1234' -'-value-,TERM,-default-' '_terminals' -'-value-,TERMINFO_DIRS,-default-' '_dir_list' -'-value-,TZ,-default-' '_time_zone' -'-value-,VALGRIND_OPTS,-default-' '_valgrind' -'-value-,WWW_HOME,-default-' '_urls' -'-value-,XML_CATALOG_FILES,-default-' '_xmlsoft' -'-value-,XZ_DEFAULTS,-default-' '_xz' -'-value-,XZ_OPT,-default-' '_xz' -'-vared-' '_in_vared' -'-zcalc-line-' '_zcalc_line' -'.' '_source' -'5g' '_go' -'5l' '_go' -'6g' '_go' -'6l' '_go' -'8g' '_go' -'8l' '_go' -'Mail' '_mail' -'Mosaic' '_webbrowser' -'_arguments' '__arguments' -'a2ps' '_a2ps' -'aaaa' '_hosts' -'abcde' '_abcde' -'ack' '_ack' -'ack-grep' '_ack' -'ack-standalone' '_ack' -'ack2' '_ack' -'acpi' '_acpi' -'add-zle-hook-widget' '_add-zle-hook-widget' -'add-zsh-hook' '_add-zsh-hook' -'admin' '_sccs' -'ali' '_mh' -'alias' '_alias' -'amaya' '_webbrowser' -'analyseplugin' '_analyseplugin' -'anno' '_mh' -'ansible' '_ansible' -'ansible-config' '_ansible' -'ansible-console' '_ansible' -'ansible-doc' '_ansible' -'ansible-galaxy' '_ansible' -'ansible-inventory' '_ansible' -'ansible-playbook' '_ansible' -'ansible-pull' '_ansible' -'ansible-vault' '_ansible' -'ant' '_ant' -'antiword' '_antiword' -'aodh' '_openstack' -'aoss' '_precommand' -'apache2ctl' '_apachectl' -'apachectl' '_apachectl' -'apk' '_apk' -'aplay' '_alsa-utils' -'appletviewer' '_java' -'apropos' '_man' -'apvlv' '_pdf' -'arduino-ctags' '_ctags' -'arecord' '_alsa-utils' -'arena' '_webbrowser' -'arp' '_arp' -'arping' '_arping' -'asciidoctor' '_asciidoctor' -'asciinema' '_asciinema' -'ash' '_sh' -'at' '_at' -'atq' '_at' -'atrm' '_at' -'attr' '_attr' -'augtool' '_augeas' -'autoload' '_typeset' -'avahi-browse' '_avahi' -'avahi-browse-domains' '_avahi' -'avahi-resolve' '_avahi' -'avahi-resolve-address' '_avahi' -'avahi-resolve-host-name' '_avahi' -'awk' '_awk' -'b2sum' '_md5sum' -'barbican' '_openstack' -'base32' '_base64' -'base64' '_base64' -'basename' '_basename' -'basenc' '_basenc' -'bash' '_bash' -'batch' '_at' -'beep' '_beep' -'bg' '_jobs_bg' -'bibtex' '_bibtex' -'bindkey' '_bindkey' -'bison' '_bison' -'bmake' '_make' -'bogofilter' '_bogofilter' -'bogotune' '_bogofilter' -'bogoutil' '_bogofilter' -'brctl' '_brctl' -'bsdgrep' '_grep' -'bsdtar' '_tar' -'btrfs' '_btrfs' -'buildhash' '_ispell' -'builtin' '_builtin' -'bunzip2' '_bzip2' -'burst' '_mh' -'busctl' '_busctl' -'bwrap' '_bwrap' -'bzcat' '_bzip2' -'bzegrep' '_grep' -'bzfgrep' '_grep' -'bzgrep' '_grep' -'bzip2' '_bzip2' -'bzip2recover' '_bzip2' -'cabal' '_cabal' -'cal' '_cal' -'calendar' '_calendar' -'cat' '_cat' -'catchsegv' '_precommand' -'cd' '_cd' -'cdc' '_sccs' -'cdr' '_cdr' -'cdrdao' '_cdrdao' -'cdrecord' '_cdrecord' -'ceilometer' '_openstack' -'certtool' '_gnutls' -'cftp' '_twisted' -'chage' '_users' -'chattr' '_chattr' -'chcon' '_chcon' -'chdir' '_cd' -'chfn' '_users' -'chgrp' '_chown' -'chimera' '_webbrowser' -'chkstow' '_stow' -'chmod' '_chmod' -'choom' '_choom' -'chown' '_chown' -'chpass' '_chsh' -'chroot' '_chroot' -'chrt' '_chrt' -'chsh' '_chsh' -'cifsiostat' '_sysstat' -'cinder' '_openstack' -'ckeygen' '_twisted' -'cksum' '_cksum' -'clear' '_nothing' -'cloudkitty' '_openstack' -'cmp' '_cmp' -'code' '_code' -'column' '_column' -'comb' '_sccs' -'combinediff' '_patchutils' -'comm' '_comm' -'command' '_command' -'comp' '_mh' -'compadd' '_compadd' -'compdef' '_compdef' -'compress' '_compress' -'conch' '_twisted' -'config.status' '_configure' -'configure' '_configure' -'cp' '_cp' -'cpio' '_cpio' -'cpupower' '_cpupower' -'crontab' '_crontab' -'cryptsetup' '_cryptsetup' -'cscope' '_cscope' -'csh' '_sh' -'csplit' '_csplit' -'ctags' '_ctags' -'ctags-exuberant' '_ctags' -'ctags-universal' '_ctags' -'curl' '_curl' -'cut' '_cut' -'dash' '_sh' -'date' '_date' -'dbus-launch' '_dbus' -'dbus-monitor' '_dbus' -'dbus-send' '_dbus' -'dconf' '_dconf' -'dd' '_dd' -'declare' '_typeset' -'delta' '_sccs' -'designate' '_openstack' -'df' '_df' -'dhclient' '_dhclient' -'dhclient3' '_dhclient' -'diff' '_diff' -'diff3' '_diff3' -'diffstat' '_diffstat' -'dig' '_dig' -'dillo' '_webbrowser' -'dircmp' '_directories' -'dirs' '_dirs' -'disable' '_disable' -'disown' '_jobs_fg' -'dist' '_mh' -'django-admin' '_django' -'django-admin.py' '_django' -'dkms' '_dkms' -'dmake' '_make' -'dmesg' '_dmesg' -'dmidecode' '_dmidecode' -'doas' '_doas' -'domainname' '_yp' -'dos2unix' '_dos2unix' -'drill' '_drill' -'dropbox' '_dropbox' -'dtruss' '_dtruss' -'du' '_du' -'dvibook' '_dvi' -'dviconcat' '_dvi' -'dvicopy' '_dvi' -'dvidvi' '_dvi' -'dvipdf' '_dvi' -'dvips' '_dvi' -'dviselect' '_dvi' -'dvitodvi' '_dvi' -'dvitype' '_dvi' -'dwb' '_webbrowser' -'e2label' '_e2label' -'eatmydata' '_precommand' -'ecasound' '_ecasound' -'echotc' '_echotc' -'echoti' '_echoti' -'ed' '_ed' -'egrep' '_grep' -'elinks' '_elinks' -'emulate' '_emulate' -'enable' '_enable' -'entr' '_entr' -'env' '_env' -'eog' '_eog' -'epdfview' '_pdf' -'epsffit' '_psutils' -'erb' '_ruby' -'espeak' '_espeak' -'etags' '_etags' -'ethtool' '_ethtool' -'eu-nm' '_nm' -'eu-objdump' '_objdump' -'eu-readelf' '_readelf' -'eu-strings' '_strings' -'eval' '_precommand' -'eview' '_vim' -'evim' '_vim' -'evince' '_evince' -'ex' '_vi' -'exec' '_exec' -'expand' '_unexpand' -'explodepkg' '_pkgtool' -'export' '_typeset' -'express' '_webbrowser' -'extcheck' '_java' -'extractres' '_psutils' -'fakeroot' '_fakeroot' -'false' '_nothing' -'fastfetch' '_fastfetch' -'fc' '_fc' -'fc-list' '_xft_fonts' -'fc-match' '_xft_fonts' -'feh' '_feh' -'fetchmail' '_fetchmail' -'ffmpeg' '_ffmpeg' -'fg' '_jobs_fg' -'fgrep' '_grep' -'figlet' '_figlet' -'filterdiff' '_patchutils' -'find' '_find' -'findaffix' '_ispell' -'findmnt' '_findmnt' -'firefox' '_mozilla' -'fixdlsrps' '_psutils' -'fixfmps' '_psutils' -'fixmacps' '_psutils' -'fixpsditps' '_psutils' -'fixpspps' '_psutils' -'fixscribeps' '_psutils' -'fixtpps' '_psutils' -'fixwfwps' '_psutils' -'fixwpps' '_psutils' -'fixwwps' '_psutils' -'flac' '_flac' -'flex' '_flex' -'flex++' '_flex' -'flipdiff' '_patchutils' -'flist' '_mh' -'flists' '_mh' -'float' '_typeset' -'fmt' '_fmt' -'fmttest' '_mh' -'fned' '_zed' -'fnext' '_mh' -'fold' '_fold' -'folder' '_mh' -'folders' '_mh' -'foot' '_foot' -'footclient' '_footclient' -'fortune' '_fortune' -'forw' '_mh' -'fprev' '_mh' -'free' '_free' -'freebsd-make' '_make' -'freezer' '_openstack' -'ftp' '_hosts' -'functions' '_typeset' -'fuser' '_fuser' -'fusermount' '_fusermount' -'fuzzel' '_fuzzel' -'fwhois' '_whois' -'galeon' '_webbrowser' -'gawk' '_awk' -'gb2sum' '_md5sum' -'gbase32' '_base64' -'gbase64' '_base64' -'gbasename' '_basename' -'gcat' '_cat' -'gccgo' '_go' -'gchgrp' '_chown' -'gchmod' '_chmod' -'gchown' '_chown' -'gchroot' '_chroot' -'gcksum' '_cksum' -'gcmp' '_cmp' -'gcomm' '_comm' -'gcore' '_gcore' -'gcp' '_cp' -'gcut' '_cut' -'gdate' '_date' -'gdb' '_gdb' -'gdd' '_dd' -'gdf' '_df' -'gdiff' '_diff' -'gdu' '_du' -'geany' '_geany' -'gegrep' '_grep' -'gem' '_gem' -'genisoimage' '_genisoimage' -'genv' '_env' -'get' '_sccs' -'getafm' '_psutils' -'getconf' '_getconf' -'getent' '_getent' -'getfacl' '_getfacl' -'getfacl.exe' '_getfacl' -'getfattr' '_attr' -'getmail' '_getmail' -'getopt' '_getopt' -'getopts' '_vars' -'gex' '_vim' -'gexpand' '_unexpand' -'gfgrep' '_grep' -'gfind' '_find' -'gfmt' '_fmt' -'gfold' '_fold' -'ggetopt' '_getopt' -'ggrep' '_grep' -'ghead' '_head' -'ghostscript' '_ghostscript' -'ghostview' '_pspdf' -'gid' '_id' -'ginstall' '_install' -'git' '_git' -'git-cvsserver' '_git' -'git-receive-pack' '_git' -'git-shell' '_git' -'git-upload-archive' '_git' -'git-upload-pack' '_git' -'gitk' '_git' -'gjoin' '_join' -'glance' '_openstack' -'gln' '_ln' -'global' '_global' -'glocate' '_locate' -'gls' '_ls' -'gmake' '_make' -'gmd5sum' '_md5sum' -'gmkdir' '_mkdir' -'gmkfifo' '_mkfifo' -'gmknod' '_mknod' -'gmktemp' '_mktemp' -'gmplayer' '_mplayer' -'gmv' '_mv' -'gnl' '_nl' -'gnocchi' '_openstack' -'gnumfmt' '_numfmt' -'gnutls-cli' '_gnutls' -'gnutls-cli-debug' '_gnutls' -'gnutls-serv' '_gnutls' -'god' '_od' -'gofmt' '_go' -'gpasswd' '_gpasswd' -'gpaste' '_paste' -'gpatch' '_patch' -'gpg' '_gpg' -'gpg-zip' '_gpg' -'gpg2' '_gpg' -'gpgv' '_gpg' -'gphoto2' '_gphoto2' -'gprintenv' '_printenv' -'gprof' '_gprof' -'gradle' '_gradle' -'gradlew' '_gradle' -'grail' '_webbrowser' -'greadlink' '_readlink' -'grep' '_grep' -'grepdiff' '_patchutils' -'grm' '_rm' -'grmdir' '_rmdir' -'groff' '_groff' -'groupadd' '_user_admin' -'groupdel' '_groups' -'groupmod' '_user_admin' -'groups' '_users' -'growisofs' '_growisofs' -'gs' '_ghostscript' -'gsbj' '_pspdf' -'gsdj' '_pspdf' -'gsdj500' '_pspdf' -'gsed' '_sed' -'gseq' '_seq' -'gsettings' '_gsettings' -'gsha1sum' '_md5sum' -'gsha224sum' '_md5sum' -'gsha256sum' '_md5sum' -'gsha384sum' '_md5sum' -'gsha512sum' '_md5sum' -'gshred' '_shred' -'gshuf' '_shuf' -'gslj' '_pspdf' -'gslp' '_pspdf' -'gsnd' '_pspdf' -'gsort' '_sort' -'gsplit' '_split' -'gstat' '_stat' -'gstdbuf' '_stdbuf' -'gstrings' '_strings' -'gstty' '_stty' -'gsum' '_cksum' -'gtac' '_tac' -'gtail' '_tail' -'gtar' '_tar' -'gtee' '_tee' -'gtimeout' '_timeout' -'gtouch' '_touch' -'gtr' '_tr' -'gtty' '_tty' -'guname' '_uname' -'gunexpand' '_unexpand' -'guniq' '_uniq' -'gunzip' '_gzip' -'guptime' '_uptime' -'gview' '_vim' -'gvim' '_vim' -'gvimdiff' '_vim' -'gwc' '_wc' -'gwho' '_who' -'gxargs' '_xargs' -'gzcat' '_gzip' -'gzegrep' '_grep' -'gzfgrep' '_grep' -'gzgrep' '_grep' -'gzilla' '_webbrowser' -'gzip' '_gzip' -'hash' '_hash' -'hd' '_hexdump' -'head' '_head' -'heat' '_openstack' -'help' '_sccs' -'hexdump' '_hexdump' -'hilite' '_precommand' -'histed' '_zed' -'history' '_fc' -'host' '_host' -'hostname' '_hostname' -'hotjava' '_webbrowser' -'htop' '_htop' -'iceweasel' '_mozilla' -'icombine' '_ispell' -'iconv' '_iconv' -'iconvconfig' '_iconvconfig' -'id' '_id' -'ifconfig' '_ifconfig' -'ifdown' '_net_interfaces' -'iftop' '_iftop' -'ifup' '_net_interfaces' -'ijoin' '_ispell' -'inc' '_mh' -'includeres' '_psutils' -'info' '_texinfo' -'infocmp' '_terminals' -'insmod' '_modutils' -'install' '_install' -'install-info' '_texinfo' -'installpkg' '_pkgtool' -'integer' '_typeset' -'interdiff' '_patchutils' -'ionice' '_ionice' -'iostat' '_iostat' -'ip' '_ip' -'ip6tables' '_iptables' -'ip6tables-restore' '_iptables' -'ip6tables-save' '_iptables' -'ipkg' '_opkg' -'ipsec' '_ipsec' -'ipset' '_ipset' -'iptables' '_iptables' -'iptables-restore' '_iptables' -'iptables-save' '_iptables' -'irb' '_ruby' -'ironic' '_openstack' -'irssi' '_irssi' -'isag' '_sysstat' -'ispell' '_ispell' -'iwconfig' '_iwconfig' -'jadetex' '_tex' -'jar' '_java' -'jarsigner' '_java' -'java' '_java' -'javac' '_java' -'javadoc' '_java' -'javah' '_java' -'javap' '_java' -'jdb' '_java' -'jobs' '_jobs_builtin' -'joe' '_joe' -'join' '_join' -'jq' '_jq' -'kdeconnect-cli' '_kdeconnect' -'keystone' '_openstack' -'keytool' '_java' -'kill' '_kill' -'killall' '_killall' -'killall5' '_killall' -'knock' '_knock' -'konqueror' '_webbrowser' -'kpartx' '_kpartx' -'kpdf' '_pdf' -'ksh' '_sh' -'ksh88' '_sh' -'ksh93' '_sh' -'kvno' '_kvno' -'last' '_last' -'lastb' '_last' -'latex' '_tex' -'latexmk' '_tex' -'ldconfig' '_ldconfig' -'ldconfig.real' '_ldconfig' -'ldd' '_ldd' -'less' '_less' -'let' '_math' -'lf' '_lf' -'lfcd' '_lf' -'lftp' '_ncftp' -'lha' '_lha' -'libinput' '_libinput' -'light' '_webbrowser' -'limit' '_limit' -'links' '_links' -'links2' '_links' -'lldb' '_lldb' -'llvm-objdump' '_objdump' -'ln' '_ln' -'loadkeys' '_loadkeys' -'local' '_typeset' -'locale' '_locale' -'localedef' '_localedef' -'locate' '_locate' -'log' '_nothing' -'logger' '_logger' -'loginctl' '_loginctl' -'logname' '_nothing' -'look' '_look' -'losetup' '_losetup' -'lp' '_lp' -'lpadmin' '_lp' -'lpinfo' '_lp' -'lpoptions' '_lp' -'lpq' '_lp' -'lpr' '_lp' -'lprm' '_lp' -'lpstat' '_lp' -'ls' '_ls' -'lsattr' '_lsattr' -'lsblk' '_lsblk' -'lsdiff' '_patchutils' -'lsmod' '_modutils' -'lsns' '_lsns' -'lsof' '_lsof' -'lsusb' '_lsusb' -'ltrace' '_ltrace' -'lua' '_lua' -'luarocks' '_luarocks' -'lz4' '_lz4' -'lz4c' '_lz4' -'lz4c32' '_lz4' -'lz4cat' '_lz4' -'lzcat' '_xz' -'lzma' '_xz' -'mac2unix' '_dos2unix' -'magnum' '_openstack' -'mail' '_mail' -'mailx' '_mail' -'make' '_make' -'makeinfo' '_texinfo' -'makepkg' '_pkgtool' -'mako' '_mako' -'makoctl' '_makoctl' -'man' '_man' -'manage.py' '_django' -'manila' '_openstack' -'mark' '_mh' -'mat' '_mat' -'mat2' '_mat2' -'mattrib' '_mtools' -'mcd' '_mtools' -'mcopy' '_mtools' -'md2' '_cksum' -'md4' '_cksum' -'md5' '_cksum' -'md5sum' '_md5sum' -'mdadm' '_mdadm' -'mdel' '_mtools' -'mdeltree' '_mtools' -'mdir' '_mtools' -'mdu' '_mtools' -'mere' '_mere' -'metaflac' '_flac' -'mformat' '_mtools' -'mgv' '_pspdf' -'mhfixmsg' '_mh' -'mhlist' '_mh' -'mhmail' '_mh' -'mhn' '_mh' -'mhparam' '_mh' -'mhpath' '_mh' -'mhshow' '_mh' -'mhstore' '_mh' -'mii-tool' '_mii-tool' -'mistral' '_openstack' -'mkdir' '_mkdir' -'mkfifo' '_mkfifo' -'mkisofs' '_growisofs' -'mknod' '_mknod' -'mksh' '_sh' -'mktemp' '_mktemp' -'mlabel' '_mtools' -'mlocate' '_locate' -'mmd' '_mtools' -'mmm' '_webbrowser' -'mmount' '_mtools' -'mmove' '_mtools' -'modinfo' '_modutils' -'modprobe' '_modutils' -'monasca' '_openstack' -'mosh' '_mosh' -'mount' '_mount' -'mozilla' '_mozilla' -'mozilla-firefox' '_mozilla' -'mozilla-xremote-client' '_mozilla' -'mpc' '_mpc' -'mplayer' '_mplayer' -'mpstat' '_sysstat' -'mpv' '_mpv' -'mr' '_myrepos' -'mrd' '_mtools' -'mread' '_mtools' -'mren' '_mtools' -'msgchk' '_mh' -'mt' '_mt' -'mtoolstest' '_mtools' -'mtr' '_mtr' -'mtype' '_mtools' -'munchlist' '_ispell' -'mupdf' '_mupdf' -'murano' '_openstack' -'mush' '_mail' -'mutt' '_mutt' -'mv' '_mv' -'mvim' '_vim' -'mx' '_hosts' -'mysql' '_mysql_utils' -'mysqladmin' '_mysql_utils' -'mysqldump' '_mysql_utils' -'mysqlimport' '_mysql_utils' -'mysqlshow' '_mysql_utils' -'nail' '_mail' -'native2ascii' '_java' -'nawk' '_awk' -'nc' '_netcat' -'ncal' '_cal' -'ncftp' '_ncftp' -'ncl' '_nedit' -'nedit' '_nedit' -'nedit-nc' '_nedit' -'netcat' '_netcat' -'netrik' '_webbrowser' -'netstat' '_netstat' -'neutron' '_openstack' -'new' '_mh' -'newgrp' '_groups' -'next' '_mh' -'nginx' '_nginx' -'ngrep' '_ngrep' -'nice' '_nice' -'nl' '_nl' -'nm' '_nm' -'nmap' '_nmap' -'nmblookup' '_samba' -'nmcli' '_networkmanager' -'nocorrect' '_precommand' -'noglob' '_precommand' -'nohup' '_precommand' -'nova' '_openstack' -'npm' '_npm' -'ns' '_hosts' -'nsenter' '_nsenter' -'nslookup' '_nslookup' -'ntalk' '_other_accounts' -'numfmt' '_numfmt' -'nvim' '_vim' -'objdump' '_objdump' -'od' '_od' -'ogg123' '_vorbis' -'oggdec' '_vorbis' -'oggenc' '_vorbis' -'ogginfo' '_vorbis' -'oksh' '_sh' -'openrc' '_openrc' -'openstack' '_openstack' -'opera' '_webbrowser' -'opera-next' '_webbrowser' -'opkg' '_opkg' -'opusdec' '_opustools' -'opusenc' '_opustools' -'opusinfo' '_opustools' -'packf' '_mh' -'pandoc' '_pandoc' -'passwd' '_users' -'paste' '_paste' -'patch' '_patch' -'pcp-htop' '_htop' -'pcred' '_pids' -'pdf2dsc' '_pdf' -'pdf2ps' '_pdf' -'pdffonts' '_pdf' -'pdfimages' '_pdf' -'pdfinfo' '_pdf' -'pdfjadetex' '_tex' -'pdflatex' '_tex' -'pdfopt' '_pdf' -'pdftex' '_tex' -'pdftexi2dvi' '_texinfo' -'pdftk' '_pdftk' -'pdftopbm' '_pdf' -'pdftops' '_pdf' -'pdftotext' '_pdf' -'pdksh' '_sh' -'perf' '_perf' -'perl' '_perl' -'perldoc' '_perldoc' -'pfiles' '_pids' -'pflags' '_pids' -'pgrep' '_pgrep' -'php' '_php' -'pick' '_mh' -'picocom' '_picocom' -'pidof' '_pidof' -'pidstat' '_sysstat' -'pigz' '_gzip' -'pinfo' '_texinfo' -'ping' '_ping' -'ping6' '_ping' -'pkg-config' '_pkg-config' -'pkgtool' '_pkgtool' -'pkill' '_pgrep' -'pldd' '_pids' -'pmake' '_make' -'pman' '_perl_modules' -'pmap' '_pmap' -'pmcat' '_perl_modules' -'pmdesc' '_perl_modules' -'pmeth' '_perl_modules' -'pmexp' '_perl_modules' -'pmfunc' '_perl_modules' -'pmload' '_perl_modules' -'pmls' '_perl_modules' -'pmpath' '_perl_modules' -'pmvers' '_perl_modules' -'podgrep' '_perl_modules' -'podpath' '_perl_modules' -'podtoc' '_perl_modules' -'poff' '_pon' -'policytool' '_java' -'pon' '_pon' -'popd' '_directory_stack' -'postconf' '_postfix' -'postqueue' '_postfix' -'postsuper' '_postfix' -'pr' '_pr' -'prev' '_mh' -'print' '_print' -'printenv' '_printenv' -'printf' '_print' -'prompt' '_prompt' -'prove' '_prove' -'prs' '_sccs' -'prt' '_sccs' -'prun' '_pids' -'ps' '_ps' -'ps2ascii' '_pspdf' -'ps2epsi' '_postscript' -'ps2pdf' '_postscript' -'ps2pdf12' '_postscript' -'ps2pdf13' '_postscript' -'ps2pdf14' '_postscript' -'ps2pdfwr' '_postscript' -'ps2ps' '_postscript' -'psbook' '_psutils' -'psed' '_sed' -'psig' '_pids' -'psmerge' '_psutils' -'psmulti' '_postscript' -'psnup' '_psutils' -'psresize' '_psutils' -'psselect' '_psutils' -'pstack' '_pids' -'pstoedit' '_pspdf' -'pstop' '_pids' -'pstops' '_psutils' -'pstotgif' '_pspdf' -'pswrap' '_postscript' -'ptx' '_ptx' -'pump' '_pump' -'pushd' '_cd' -'pv' '_pv' -'pwait' '_pids' -'pwdx' '_pids' -'pwgen' '_pwgen' -'pyhtmlizer' '_twisted' -'qdbus' '_qdbus' -'r' '_fc' -'rake' '_rake' -'ranlib' '_ranlib' -'rar' '_rar' -'rc' '_sh' -'rc-service' '_rc-service' -'rc-status' '_rc-status' -'rc-update' '_rc-update' -'rclone' '_rclone' -'rdesktop' '_rdesktop' -'read' '_read' -'readelf' '_readelf' -'readlink' '_readlink' -'readonly' '_typeset' -'refile' '_mh' -'rehash' '_hash' -'removepkg' '_pkgtool' -'renice' '_renice' -'repl' '_mh' -'retawq' '_webbrowser' -'rg' '_rg' -'rgrep' '_grep' -'rgview' '_vim' -'rgvim' '_vim' -'ri' '_ri' -'rm' '_rm' -'rmd160' '_cksum' -'rmdel' '_sccs' -'rmdir' '_rmdir' -'rmf' '_mh' -'rmic' '_java' -'rmid' '_java' -'rmiregistry' '_java' -'rmm' '_mh' -'rmmod' '_modutils' -'route' '_route' -'rrdtool' '_rrdtool' -'ruby' '_ruby' -'ruby-mri' '_ruby' -'run-help' '_run-help' -'rup' '_hosts' -'rusage' '_precommand' -'rview' '_vim' -'rvim' '_vim' -'rwho' '_hosts' -'rxvt' '_urxvt' -'s2p' '_sed' -'sact' '_sccs' -'sadf' '_sysstat' -'sahara' '_openstack' -'sar' '_sysstat' -'scan' '_mh' -'sccs' '_sccs' -'sccsdiff' '_sccs' -'sched' '_sched' -'schedtool' '_schedtool' -'scons' '_scons' -'scp' '_ssh' -'screen' '_screen' -'script' '_script' -'scriptreplay' '_script' -'seaf-cli' '_seafile' -'sed' '_sed' -'senlin' '_openstack' -'seq' '_seq' -'serialver' '_java' -'service' '_service' -'set' '_set' -'setfacl' '_setfacl' -'setfacl.exe' '_setfacl' -'setfattr' '_attr' -'setopt' '_setopt' -'setpriv' '_setpriv' -'setsid' '_setsid' -'setxkbmap' '_setxkbmap' -'sftp' '_ssh' -'sh' '_sh' -'sha1' '_cksum' -'sha1sum' '_md5sum' -'sha224sum' '_md5sum' -'sha256' '_cksum' -'sha256sum' '_md5sum' -'sha384' '_cksum' -'sha384sum' '_md5sum' -'sha512' '_cksum' -'sha512sum' '_md5sum' -'sha512t256' '_cksum' -'shasum' '_shasum' -'shift' '_arrays' -'show' '_mh' -'showchar' '_psutils' -'showmount' '_showmount' -'shred' '_shred' -'shuf' '_shuf' -'shutdown' '_shutdown' -'skein1024' '_cksum' -'skein256' '_cksum' -'skein512' '_cksum' -'skipstone' '_webbrowser' -'slabtop' '_slabtop' -'slitex' '_tex' -'slocate' '_locate' -'slogin' '_ssh' -'slrn' '_slrn' -'smartctl' '_smartmontools' -'smbclient' '_samba' -'smbcontrol' '_samba' -'smbstatus' '_samba' -'soa' '_hosts' -'sort' '_sort' -'sortm' '_mh' -'source' '_source' -'spamassassin' '_spamassassin' -'split' '_split' -'splitdiff' '_patchutils' -'sqlite' '_sqlite' -'sqlite3' '_sqlite' -'sqsh' '_sqsh' -'srptool' '_gnutls' -'ss' '_ss' -'ssh' '_ssh' -'ssh-add' '_ssh' -'ssh-agent' '_ssh' -'ssh-copy-id' '_ssh' -'ssh-keygen' '_ssh' -'ssh-keyscan' '_ssh' -'sshfs' '_sshfs' -'star' '_tar' -'stat' '_stat' -'stdbuf' '_stdbuf' -'stow' '_stow' -'strace' '_strace' -'strace64' '_strace' -'strftime' '_strftime' -'strings' '_strings' -'strip' '_strip' -'strongswan' '_ipsec' -'stty' '_stty' -'su' '_su' -'subl' '_sublimetext' -'sudo' '_sudo' -'sudoedit' '_sudo' -'sum' '_cksum' -'sv' '_runit' -'swaks' '_swaks' -'swanctl' '_swanctl' -'swayidle' '_swayidle' -'swift' '_swift' -'swiftc' '_swift' -'sync' '_nothing' -'sysctl' '_sysctl' -'tac' '_tac' -'tacker' '_openstack' -'tail' '_tail' -'talk' '_other_accounts' -'tar' '_tar' -'tcp_open' '_tcpsys' -'tcpdump' '_tcpdump' -'tcptraceroute' '_tcptraceroute' -'tcsh' '_sh' -'tee' '_tee' -'tex' '_tex' -'texi2any' '_texinfo' -'texi2dvi' '_texinfo' -'texi2pdf' '_texinfo' -'texindex' '_texinfo' -'tidy' '_tidy' -'tig' '_git' -'time' '_precommand' -'timeout' '_timeout' -'times' '_nothing' -'tkconch' '_twisted' -'tkinfo' '_texinfo' -'tload' '_tload' -'todo.sh' '_todo.sh' -'toilet' '_toilet' -'top' '_top' -'touch' '_touch' -'tput' '_tput' -'tr' '_tr' -'tracepath' '_tracepath' -'tracepath6' '_tracepath' -'traceroute' '_hosts' -'transmission-remote' '_transmission' -'trap' '_trap' -'tree' '_tree' -'trial' '_twisted' -'trove' '_openstack' -'true' '_nothing' -'truncate' '_truncate' -'truss' '_truss' -'tryaffix' '_ispell' -'tty' '_tty' -'ttyctl' '_ttyctl' -'tune2fs' '_tune2fs' -'twist' '_twisted' -'twistd' '_twisted' -'txt' '_hosts' -'type' '_which' -'typeset' '_typeset' -'typst' '_typst' -'ulimit' '_ulimit' -'umount' '_mount' -'unalias' '_aliases' -'uname' '_uname' -'uncompress' '_compress' -'unexpand' '_unexpand' -'unfunction' '_functions' -'unget' '_sccs' -'unhash' '_unhash' -'uniq' '_uniq' -'unix2dos' '_dos2unix' -'unix2mac' '_dos2unix' -'unlimit' '_limits' -'unlz4' '_lz4' -'unlzma' '_xz' -'unpigz' '_gzip' -'unrar' '_rar' -'unset' '_vars' -'unsetopt' '_setopt' -'unshare' '_unshare' -'unwrapdiff' '_patchutils' -'unxz' '_xz' -'unzip' '_zip' -'upgradepkg' '_pkgtool' -'uptime' '_uptime' -'urxvt' '_urxvt' -'urxvt256c' '_urxvt' -'urxvt256c-ml' '_urxvt' -'urxvt256c-mlc' '_urxvt' -'urxvt256cc' '_urxvt' -'urxvtc' '_urxvt' -'useradd' '_user_admin' -'userdel' '_users' -'usermod' '_user_admin' -'val' '_sccs' -'valgrind' '_valgrind' -'vared' '_vared' -'vcs_info_hookadd' '_vcs_info' -'vcs_info_hookdel' '_vcs_info' -'vi' '_vi' -'view' '_vi' -'vim' '_vim' -'vimdiff' '_vim' -'virsh' '_libvirt' -'virt-admin' '_libvirt' -'virt-host-validate' '_libvirt' -'virt-pki-validate' '_libvirt' -'virt-xml-validate' '_libvirt' -'visudo' '_visudo' -'vitrage' '_openstack' -'vmstat' '_vmstat' -'vorbiscomment' '_vorbis' -'vpnc' '_vpnc' -'vpnc-connect' '_vpnc' -'w' '_w' -'w3m' '_w3m' -'wait' '_wait' -'watch' '_watch' -'watcher' '_openstack' -'wc' '_wc' -'wget' '_wget' -'what' '_sccs' -'whatis' '_man' -'whence' '_which' -'where' '_which' -'whereis' '_whereis' -'which' '_which' -'who' '_who' -'whoami' '_nothing' -'whois' '_whois' -'whom' '_mh' -'wipefs' '_wipefs' -'wl-copy' '_wl-copy' -'wl-paste' '_wl-paste' -'wodim' '_cdrecord' -'wpa_cli' '_wpa_cli' -'wpctl' '_wpctl' -'write' '_users_on' -'www' '_webbrowser' -'xargs' '_xargs' -'xattr' '_attr' -'xauth' '_xauth' -'xautolock' '_xautolock' -'xclip' '_xclip' -'xdpyinfo' '_x_utils' -'xdvi' '_xdvi' -'xelatex' '_tex' -'xetex' '_tex' -'xev' '_x_utils' -'xfd' '_x_utils' -'xfontsel' '_x_utils' -'xfreerdp' '_rdesktop' -'xhost' '_x_utils' -'xinput' '_xinput' -'xkill' '_x_utils' -'xlsatoms' '_x_utils' -'xlsclients' '_x_utils' -'xml' '_xmlstarlet' -'xmllint' '_xmlsoft' -'xmlstarlet' '_xmlstarlet' -'xmodmap' '_xmodmap' -'xmosaic' '_webbrowser' -'xon' '_x_utils' -'xpdf' '_xpdf' -'xping' '_hosts' -'xprop' '_x_utils' -'xrandr' '_xrandr' -'xrdb' '_x_utils' -'xscreensaver-command' '_xscreensaver' -'xset' '_xset' -'xsetroot' '_x_utils' -'xsltproc' '_xmlsoft' -'xterm' '_xterm' -'xwd' '_x_utils' -'xwininfo' '_x_utils' -'xwud' '_x_utils' -'xxd' '_xxd' -'xz' '_xz' -'xzcat' '_xz' -'yafc' '_yafc' -'yash' '_sh' -'ypbind' '_yp' -'ypcat' '_yp' -'ypmatch' '_yp' -'yppasswd' '_yp' -'yppoll' '_yp' -'yppush' '_yp' -'ypserv' '_yp' -'ypset' '_yp' -'ypwhich' '_yp' -'ypxfr' '_yp' -'ytalk' '_other_accounts' -'zargs' '_zargs' -'zcalc' '_zcalc' -'zcat' '_zcat' -'zcompile' '_zcompile' -'zcp' '_zmv' -'zdelattr' '_zattr' -'zdump' '_zdump' -'zeal' '_zeal' -'zed' '_zed' -'zegrep' '_grep' -'zen' '_webbrowser' -'zf_chgrp' '_chown' -'zf_chmod' '_chmod' -'zf_chown' '_chown' -'zf_ln' '_ln' -'zf_mkdir' '_mkdir' -'zf_mv' '_mv' -'zf_rm' '_rm' -'zf_rmdir' '_rmdir' -'zfgrep' '_grep' -'zgetattr' '_zattr' -'zgrep' '_grep' -'zip' '_zip' -'zipinfo' '_zip' -'zle' '_zle' -'zlistattr' '_zattr' -'zln' '_zmv' -'zmail' '_mail' -'zmodload' '_zmodload' -'zmv' '_zmv' -'zone' '_hosts' -'zparseopts' '_zparseopts' -'zpty' '_zpty' -'zsetattr' '_zattr' -'zsh' '_zsh' -'zsh-mime-handler' '_zsh-mime-handler' -'zsocket' '_zsocket' -'zstat' '_stat' -'zstyle' '_zstyle' -'ztodo' '_ztodo' -'zun' '_openstack' -'zxpdf' '_xpdf' -) - -_services=( -'-redirect-,<,bunzip2' 'bunzip2' -'-redirect-,<,bzip2' 'bzip2' -'-redirect-,<,compress' 'compress' -'-redirect-,<,gunzip' 'gunzip' -'-redirect-,<,gzip' 'gzip' -'-redirect-,<,uncompress' 'uncompress' -'-redirect-,<,unxz' 'unxz' -'-redirect-,<,xz' 'xz' -'-redirect-,>,bzip2' 'bunzip2' -'-redirect-,>,compress' 'uncompress' -'-redirect-,>,gzip' 'gunzip' -'-redirect-,>,xz' 'unxz' -'Mail' 'mail' -'bzcat' 'bunzip2' -'gchgrp' 'chgrp' -'gchown' 'chown' -'gpg2' 'gpg' -'gzcat' 'gunzip' -'iceweasel' 'firefox' -'lzcat' 'unxz' -'lzma' 'xz' -'mailx' 'mail' -'nail' 'mail' -'ncl' 'nc' -'nedit-nc' 'nc' -'slogin' 'ssh' -'unlzma' 'unxz' -'xelatex' 'latex' -'xetex' 'tex' -'xzcat' 'unxz' -'zf_chgrp' 'chgrp' -'zf_chown' 'chown' -) - -_patcomps=( -'*/(init|rc[0-9S]#).d/*' '_init_d' -) - -_postpatcomps=( -'(p[bgpn]m*|*top[bgpn]m)' '_pbm' -'(ruby|[ei]rb)[0-9.]#' '_ruby' -'(texi(2*|ndex))' '_texi' -'(tiff*|*2tiff|pal2rgb)' '_tiff' -'*/X11(|R<4->)/*' '_x_arguments' -'-value-,(ftp|http(|s))_proxy,-default-' '_urls' -'-value-,*PATH,-default-' '_dir_list' -'-value-,*path,-default-' '_directories' -'-value-,LC_*,-default-' '_locales' -'-value-,RUBY(LIB|OPT|PATH),-default-' '_ruby' -'_*' '_compadd' -'gem[0-9.]#' '_gem' -'lua[0-9.-]##' '_lua' -'php[0-9.-]' '_php' -'pip[0-9.]#' '_pip' -'pydoc[0-9.]#' '_pydoc' -'python[0-9.]#' '_python' -'qemu(|-system-*)' '_qemu' -'shasum(|5).*' '_shasum' -'yodl(|2*)' '_yodl' -'zf*' '_zftp' -) - -_compautos=( -'_call_program' '+X' -) - -zle -C _bash_complete-word .complete-word _bash_completions -zle -C _bash_list-choices .list-choices _bash_completions -zle -C _complete_debug .complete-word _complete_debug -zle -C _complete_help .complete-word _complete_help -zle -C _complete_tag .complete-word _complete_tag -zle -C _correct_filename .complete-word _correct_filename -zle -C _correct_word .complete-word _correct_word -zle -C _expand_alias .complete-word _expand_alias -zle -C _expand_word .complete-word _expand_word -zle -C _history-complete-newer .complete-word _history_complete_word -zle -C _history-complete-older .complete-word _history_complete_word -zle -C _list_expansions .list-choices _expand_word -zle -C _most_recent_file .complete-word _most_recent_file -zle -C _next_tags .list-choices _next_tags -zle -C _read_comp .complete-word _read_comp -bindkey '^X^R' _read_comp -bindkey '^X?' _complete_debug -bindkey '^XC' _correct_filename -bindkey '^Xa' _expand_alias -bindkey '^Xc' _correct_word -bindkey '^Xd' _list_expansions -bindkey '^Xe' _expand_word -bindkey '^Xh' _complete_help -bindkey '^Xm' _most_recent_file -bindkey '^Xn' _next_tags -bindkey '^Xt' _complete_tag -bindkey '^X~' _bash_list-choices -bindkey '^[,' _history-complete-newer -bindkey '^[/' _history-complete-older -bindkey '^[~' _bash_complete-word - -autoload -Uz _apk _busctl _bwrap _curl _fastfetch \ - _foot _footclient _fuzzel _lf _libinput \ - _loginctl _mako _makoctl _mpv _openrc \ - _rc-service _rc-status _rc-update _rg _swayidle \ - _typst _wl-copy _wl-paste _wpctl _cdr \ - _all_labels _all_matches _alternative _approximate _arg_compile \ - _arguments _bash_completions _cache_invalid _call_function _combination \ - _comp_locale _complete _complete_debug _complete_help _complete_help_generic \ - _complete_tag _correct _correct_filename _correct_word _describe \ - _description _dispatch _expand _expand_alias _expand_word \ - _extensions _external_pwds _generic _guard _history \ - _history_complete_word _ignored _list _main_complete _match \ - _menu _message _most_recent_file _multi_parts _next_label \ - _next_tags _normal _nothing _numbers _oldlist \ - _pick_variant _prefix _read_comp _regex_arguments _regex_words \ - _requested _retrieve_cache _sep_parts _sequence _set_command \ - _setup _store_cache _sub_commands _tags _user_expand \ - _values _wanted _acpi _alsa-utils _analyseplugin \ - _basenc _brctl _btrfs _capabilities _chattr \ - _chcon _choom _chrt _cpupower _cryptsetup \ - _dkms _e2label _ethtool _findmnt _free \ - _fuse_arguments _fuse_values _fusermount _gpasswd _htop \ - _iconvconfig _ionice _ipset _iptables _iwconfig \ - _kpartx _losetup _lsattr _lsblk _lsns \ - _lsusb _ltrace _mat _mat2 _mdadm \ - _mii-tool _modutils _networkmanager _nsenter _opkg \ - _perf _pidof _pkgtool _pmap _qdbus \ - _schedtool _selinux_contexts _selinux_roles _selinux_types _selinux_users \ - _setpriv _setsid _slabtop _ss _sshfs \ - _strace _sysstat _tload _tracepath _tune2fs \ - _unshare _valgrind _wakeup_capable_devices _wipefs _wpa_cli \ - _a2ps _abcde _absolute_command_paths _ack _ansible \ - _ant _antiword _apachectl _arch_archives _arch_namespace \ - _arp _arping _asciidoctor _asciinema _at \ - _attr _augeas _avahi _awk _base64 \ - _basename _bash _baudrates _beep _bibtex \ - _bind_addresses _bison _bogofilter _bpf_filters _bzip2 \ - _cabal _cal _calendar _canonical_paths _cat \ - _cdrdao _cdrecord _chmod _chown _chroot \ - _chsh _cksum _cmdambivalent _cmdstring _cmp \ - _column _comm _compress _configure _cp \ - _cpio _crontab _cscope _csplit _ctags \ - _ctags_tags _curl _cut _date _date_formats \ - _dates _dbus _dconf _dd _df \ - _dhclient _dict_words _diff _diff3 _diff_options \ - _diffstat _dig _dir_list _directories _django \ - _dmesg _dmidecode _dns_types _doas _domains \ - _dos2unix _drill _dropbox _dtruss _du \ - _dvi _ecasound _ed _elinks _email_addresses \ - _entr _env _espeak _etags _fakeroot \ - _feh _fetchmail _ffmpeg _figlet _file_modes \ - _file_systems _files _find _find_net_interfaces _flac \ - _flex _fmt _fold _fortune _fuser \ - _gcore _gdb _gem _genisoimage _getconf \ - _getent _getfacl _getmail _getopt _ghostscript \ - _git _global _global_tags _gnu_generic _gnutls \ - _go _gpg _gphoto2 _gprof _gradle \ - _grep _groff _groups _growisofs _gsettings \ - _gzip _have_glob_qual _head _hexdump _host \ - _hostname _hosts _iconv _id _ifconfig \ - _iftop _init_d _install _iostat _ip \ - _ipsec _irssi _ispell _java _java_class \ - _joe _join _jq _killall _knock \ - _kvno _last _ld_debug _ldconfig _ldd \ - _less _lha _libvirt _links _list_files \ - _lldb _ln _loadkeys _locale _localedef \ - _locales _locate _logger _look _lp \ - _ls _lsof _lua _luarocks _lz4 \ - _mail _mailboxes _make _man _md5sum \ - _mh _mime_types _mkdir _mkfifo _mknod \ - _mktemp _mosh _mount _mpc _mt \ - _mtools _mtr _mutt _mv _my_accounts \ - _myrepos _mysql_utils _ncftp _net_interfaces _netcat \ - _netstat _newsgroups _nginx _ngrep _nice \ - _nl _nm _nmap _npm _nslookup \ - _numfmt _objdump _object_files _od _openstack \ - _opustools _other_accounts _pandoc _paste _patch \ - _patchutils _path_commands _path_files _pbm _pdf \ - _perl _perl_basepods _perl_modules _perldoc _pgids \ - _pgrep _php _picocom _pids _ping \ - _pip _pkg-config _pkg_instance _pon _ports \ - _postfix _postscript _pr _printenv _printers \ - _process_names _prove _ps _pspdf _psutils \ - _ptx _pump _pv _pwgen _pydoc \ - _python _python_modules _qemu _rake _ranlib \ - _rar _rclone _readelf _readlink _remote_files \ - _renice _ri _rm _rmdir _route \ - _rrdtool _ruby _runit _samba _sccs \ - _scons _screen _script _seafile _sed \ - _seq _service _services _setfacl _sh \ - _shasum _showmount _shred _shuf _shutdown \ - _signals _slrn _smartmontools _sort _spamassassin \ - _split _sqlite _sqsh _ssh _ssh_hosts \ - _stat _stdbuf _stow _strings _strip \ - _stty _su _sudo _swaks _swanctl \ - _swift _sys_calls _sysctl _tac _tail \ - _tar _tar_archive _tcpdump _tcptraceroute _tee \ - _terminals _tex _texi _texinfo _tidy \ - _tiff _tilde_files _time_zone _timeout _todo.sh \ - _toilet _top _touch _tput _tr \ - _transmission _tree _truncate _truss _tty \ - _ttys _twisted _umountable _uname _unexpand \ - _uniq _uptime _urls _user_admin _user_at_host \ - _users _users_on _vi _vim _visudo \ - _vmstat _vorbis _vpnc _w _w3m \ - _watch _wc _webbrowser _wget _whereis \ - _who _whois _xargs _xmlsoft _xmlstarlet \ - _xxd _xz _yafc _yodl _yp \ - _zcat _zdump _zip _zsh _code \ - _eog _evince _geany _kdeconnect _mozilla \ - _mplayer _mupdf _nedit _pdftk _rdesktop \ - _setxkbmap _sublimetext _urxvt _x_arguments _x_borderwidth \ - _x_color _x_colormapid _x_cursor _x_display _x_extension \ - _x_font _x_geometry _x_keysym _x_locale _x_modifier \ - _x_name _x_resource _x_selection_timeout _x_title _x_utils \ - _x_visual _x_window _xauth _xautolock _xclip \ - _xdvi _xft_fonts _xinput _xmodmap _xpdf \ - _xrandr _xscreensaver _xset _xt_arguments _xt_session_id \ - _xterm _zeal __arguments _add-zle-hook-widget _add-zsh-hook \ - _alias _aliases _arrays _assign _autocd \ - _bindkey _brace_parameter _builtin _cd _command \ - _command_names _compadd _compdef _completers _condition \ - _default _delimiters _directory_stack _dirs _disable \ - _dynamic_directory_name _echotc _echoti _emulate _enable \ - _equal _exec _fc _file_descriptors _first \ - _functions _globflags _globqual_delims _globquals _hash \ - _history_modifiers _in_vared _jobs _jobs_bg _jobs_builtin \ - _jobs_fg _kill _limit _limits _math \ - _math_params _mere _module_math_func _options _options_set \ - _options_unset _parameter _parameters _precommand _print \ - _prompt _ps1234 _read _redirect _run-help \ - _sched _set _setopt _source _strftime \ - _subscript _suffix_alias_files _tcpsys _tilde _trap \ - _ttyctl _typeset _ulimit _unhash _user_math_func \ - _value _vared _vars _vcs_info _vcs_info_hooks \ - _wait _which _widgets _zargs _zattr \ - _zcalc _zcalc_line _zcompile _zed _zftp \ - _zle _zmodload _zmv _zparseopts _zpty \ - _zsh-mime-handler _zsocket _zstyle _ztodo -autoload -Uz +X _call_program - -typeset -gUa _comp_assocs -_comp_assocs=( '' ) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index a7d7a4c..0c46a4e 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -1,8 +1,3 @@ -# Enable colors and change prompt: -case $(tty) in /dev/tty[0-9]*) - source .cache/wal/colors-tty.sh -esac - autoload -U colors && colors # Load colors PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[red]%}@%{$fg[yellow]%}%M %{$fg[yellow]%}%~%{$fg[red]%}]%{$reset_color%}$%b " @@ -78,14 +73,9 @@ preexec() { echo -ne '\e[5 q' ;} # Use beam shape cursor for each new prompt. # Aliases alias sudo='doas' alias neofetch='fastfetch' -alias yay='paru' -alias docker='podman' alias ls='ls -lah' -alias codium='codium --ozone-platform=wayland' -alias cmatrix='cmatrix -bcm -u 7' -alias stmps='stmps -mpris' +alias wal='hellwal -q' alias wget='wget --hsts-file="$XDG_CACHE_HOME/wget-hsts"' -alias vi='busybox vi' # Commands fastfetch