youtube-tui: ship

This commit is contained in:
2024-07-14 02:39:38 +00:00
parent ab200f8988
commit a8bcfaed53
3 changed files with 18 additions and 13 deletions

View File

@@ -321,6 +321,7 @@ in
"vulkan-tools" # vulkaninfo "vulkan-tools" # vulkaninfo
# "whalebird" # pleroma client (Electron). input is broken on phosh. # "whalebird" # pleroma client (Electron). input is broken on phosh.
"xdg-terminal-exec" "xdg-terminal-exec"
"youtube-tui"
"zathura" # PDF/CBZ/ePUB viewer "zathura" # PDF/CBZ/ePUB viewer
]; ];

View File

@@ -173,6 +173,7 @@
./xdg-desktop-portal-wlr.nix ./xdg-desktop-portal-wlr.nix
./xdg-terminal-exec.nix ./xdg-terminal-exec.nix
./xdg-utils.nix ./xdg-utils.nix
./youtube-tui.nix
./zathura.nix ./zathura.nix
./zeal.nix ./zeal.nix
./zecwallet-lite.nix ./zecwallet-lite.nix

View File

@@ -24,43 +24,46 @@ log() {
configureKeyboardFor_application() { configureKeyboardFor_application() {
log "configureKeyboardFor_application: $1" log "configureKeyboardFor_application: $1"
case "$1" in case "$1" in
Alacritty.desktop) (Alacritty.desktop)
setKeyboard show setKeyboard show
;; ;;
app.drey.Dialect.desktop) (app.drey.Dialect.desktop)
setKeyboard showIfRoom setKeyboard showIfRoom
;; ;;
com.github.hugolabe.Wike.desktop) (com.github.hugolabe.Wike.desktop)
setKeyboard showIfRoom setKeyboard showIfRoom
;; ;;
# io.github.lainsce.Notejot.desktop) # (io.github.lainsce.Notejot.desktop)
# setKeyboard showIfRoom # setKeyboard showIfRoom
# ;; # ;;
networkmanager_dmenu.desktop) (networkmanager_dmenu.desktop)
setKeyboard showIfRoom setKeyboard showIfRoom
;; ;;
org.gnome.Epiphany.desktop) (org.gnome.Epiphany.desktop)
setKeyboard showIfRoom setKeyboard showIfRoom
;; ;;
rofi.desktop) (rofi.desktop)
setKeyboard showIfRoom setKeyboard showIfRoom
;; ;;
rofi-applications.desktop) (rofi-applications.desktop)
setKeyboard showIfRoom setKeyboard showIfRoom
;; ;;
rofi-filebrowser.desktop) (rofi-filebrowser.desktop)
setKeyboard showIfRoom setKeyboard showIfRoom
;; ;;
rofi-snippets.desktop) (rofi-snippets.desktop)
setKeyboard showIfRoom setKeyboard showIfRoom
;; ;;
sane-screenshot.desktop) (sane-screenshot.desktop)
# leave unchanged # leave unchanged
;; ;;
xdg-terminal-exec.desktop) (xdg-terminal-exec.desktop)
setKeyboard show setKeyboard show
;; ;;
*) (youtube-tui.desktop)
setKeyboard show
;;
(*)
setKeyboard hide setKeyboard hide
;; ;;
esac esac