sh: Replace kitty invocations with wezterm

This commit is contained in:
Marty Oehme 2022-11-15 18:36:41 +01:00
parent 078578b173
commit fdc85e5569
Signed by: Marty
GPG key ID: 73BA40D5AFAF49C9
3 changed files with 11 additions and 11 deletions

View file

@ -48,8 +48,8 @@ Enjoy!
* [`waybar`](https://github.com/Alexays/Waybar) - Easily customizable statusbar for wayland * [`waybar`](https://github.com/Alexays/Waybar) - Easily customizable statusbar for wayland
* [`bemenu`](https://github.com/Cloudef/bemenu) - Extended dmenu replacement for wayland, X11 and ncurses * [`bemenu`](https://github.com/Cloudef/bemenu) - Extended dmenu replacement for wayland, X11 and ncurses
* [`fontconfig`] - System-wide font replacements and styling settings * [`fontconfig`] - System-wide font replacements and styling settings
* [`kitty`](https://sw.kovidgoyal.net/kitty/) - Terminal emulator (GPU accelerated and configurable) * [`wezterm`](https://wezfurlong.org/wezterm/) - Terminal emulator (fast, understandable and lua configurable)
* [`tmux`](https://github.com/tmux/tmux/) - terminal multiplexer * [`tmux`](https://github.com/tmux/tmux/) - terminal multiplexer (slowly migrating away in favor of wezterm)
* [`nvim`](https://neovim.io/) - Neovim configuration * [`nvim`](https://neovim.io/) - Neovim configuration
* [`vifm`](https://github.com/vifm/vifm) - vim-like file-manager * [`vifm`](https://github.com/vifm/vifm) - vim-like file-manager
* [`qutebrowser`](https://github.com/qutebrowser/qutebrowser) - vim-key enabled web browser * [`qutebrowser`](https://github.com/qutebrowser/qutebrowser) - vim-key enabled web browser

View file

@ -22,7 +22,7 @@ export BIBFILE="${BIBFILE:-$LIBRARYROOT/academia/academia.bib}"
# these are my personal 'important' application settings # these are my personal 'important' application settings
export EDITOR="nvim" export EDITOR="nvim"
export BROWSER="qutebrowser" export BROWSER="qutebrowser"
export TERMINAL="kitty" export TERMINAL="wezterm"
export PAGER="less" export PAGER="less"
export FILEREADER="zathura" export FILEREADER="zathura"

View file

@ -12,7 +12,7 @@
"return-type": "json", "return-type": "json",
"exec": "~/.config/waybar/modules/archupdates 5 json", "exec": "~/.config/waybar/modules/archupdates 5 json",
"interval": 3600, "interval": 3600,
"on-click": "kitty --class float topgrade" "on-click": "$TERMINAL start --class float topgrade"
}, },
"backlight": { "backlight": {
"device": "intel_backlight", "device": "intel_backlight",
@ -45,8 +45,8 @@
"warning": 50, "warning": 50,
"critical": 80 "critical": 80
}, },
"on-click": "kitty --class float top", "on-click": "$TERMINAL start --class float top",
"on-click-right": "kitty --class float glances" "on-click-right": "$TERMINAL start --class float glances"
}, },
"custom/events": { "custom/events": {
"format": "{}", "format": "{}",
@ -115,7 +115,7 @@
"tooltip-format-ethernet": "{ifname} ", "tooltip-format-ethernet": "{ifname} ",
"tooltip-format-disconnected": "Disconnected", "tooltip-format-disconnected": "Disconnected",
"max-length": 50, "max-length": 50,
"on-click": "kitty --class float nmtui", "on-click": "$TERMINAL start --class float nmtui",
// "on-click-right": "sudo rfkill toggle wlan" // "on-click-right": "sudo rfkill toggle wlan"
}, },
"pulseaudio": { "pulseaudio": {
@ -132,7 +132,7 @@
"default": ["", ""] "default": ["", ""]
}, },
"scroll-step": 1, "scroll-step": 1,
"on-click": "kitty --class float pulsemixer", "on-click": "$TERMINAL start --class float pulsemixer",
"on-scroll-up": "pactl set-sink-volume @DEFAULT_SINK@ +1%", "on-scroll-up": "pactl set-sink-volume @DEFAULT_SINK@ +1%",
"on-scroll-down": "pactl set-sink-volume @DEFAULT_SINK@ -1%" "on-scroll-down": "pactl set-sink-volume @DEFAULT_SINK@ -1%"
}, },
@ -146,7 +146,7 @@
"critical-threshold": 80, "critical-threshold": 80,
// "format-critical": "{temperatureC}° ", // "format-critical": "{temperatureC}° ",
"format": "{temperatureC}° ", "format": "{temperatureC}° ",
"on-click": "kitty --class float watch sensors" "on-click": "$TERMINAL start --class float watch sensors"
}, },
"tray": { "tray": {
"icon-size": 21, "icon-size": 21,
@ -176,6 +176,6 @@
"exec": "wc -l ~/.local/share/vidl/vidl_queue | cut -d' ' -f1", "exec": "wc -l ~/.local/share/vidl/vidl_queue | cut -d' ' -f1",
"exec-if": "[ -f ~/.local/share/vidl/vidl_queue ]", "exec-if": "[ -f ~/.local/share/vidl/vidl_queue ]",
"interval": 5, "interval": 5,
"on-click": "kitty --class float nvim ~/.local/share/vidl/vidl_queue" "on-click": "$TERMINAL start --class float nvim ~/.local/share/vidl/vidl_queue"
}, },
} }