home.social

#fuzzel — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #fuzzel, aggregated by home.social.

  1. I've been running .desktop file actions for flatpak installs via "flatpak run ..." like a caveman for years.

    TIL about the flag --show-actions 🎉

  2. I just can't stop building menus with #fuzzel 🫠

    Now I have it as an application launcher, poweroff menu and wallpaper selector.

  3. Linux #hivemind: Got a question for you regarding #tmux, #KittyTerminal, #KDEPlasma and #Fuzzel.

    I've got a tiny bash script that uses Fuzzel to list the current running tmux sessions. This launches a new Kitty terminal attached to that session. So far so good. However, I'm currently not detecting whether an instance of Kitty is currently attached to that session.

    Further to this, if there is a current Kitty session attached to it, I'd like to be able to switch to it rather than launch a new one.

    What's the best way to do this? Do I need to detect the list of Kitty instances known by KWin? Should I set the Kitty window title to the tmux session name? Is there a better way?

    #AskFedi

  4. @DrKnow @dnkl @HuguesRoss I've pivoted to using the Nord colorscheme instead of creating something similar. Here's the latest look. Higher contrast compared to the previous one.

    #fuzzel

  5. Don't know if anyone would like this, but I've written a little script that launches #Fuzzel with a list of currently active #tmux sessions, then launches #KittyTerminal maximised.

    #! /bin/sh

    action=$(tmux ls -F"#S" | fuzzel --dmenu --prompt='tmux> ' --log-level=none)
    [ -z "${action}" ] && exit 130
    exec kitty --start-as maximized -e tmux attach -t$action

    Hack at it as you wish!

  6. I'm proposing updating the default theme for #Fuzzel (by @dnkl). It's my favorite launcher and menu app for #Linux. Here's my first draft.

    Discussion: codeberg.org/dnkl/fuzzel/issue

    #swaywm

  7. Ok, this is confusing...

    When I run #NeoVim from any terminal, it has a white background, just like my terminal.

    When I run neovim from a terminal started by launcher like #rofi or #fuzzel, it has a gray background.

    This is both in #Debian linux + #Swaywm and #OpenBSD + #i3wm.

    So confuzzled.

    Update:

    Found a workaround by adding this to my init.vim:

    "Set basic colors to override weird gray background when COLORTERM=truecolor
    hi Normal guifg=#000000
    hi Normal guibg=#ffffff
    
  8. Modify #sway on the #pocketreform. #waybar can be small. replace #wofi with #fuzzel

    Also adding shortcut to switch to scale 1.5 when surfing the net

  9. Toller, schneller #launcher! Mit #fuzzysearch und erinnert sich an die meist geöffneten Applikationen:
    github.com/j0ru/kickoff

    In #hyprland config:
    bind=ALT,D,exec,cat ~/.config/kickoff/dateiliste.txt | kickoff --from-stdin --history ~/.config/kickoff/history.csv
    Top!

    Hatte jetzt lang #fuzzel, aber da kickoff in #nixos verfügbar..
    Suck on this, #openSUSE! :-)

    #linux #wayland #rust

  10. Just merged support for wp_fractional_scale_v1 (i.e. "fractional scaling") for #fuzzel

    Better late than never...

    Next: #fnott

  11. My smaller projects, #fuzzel, #yambar and #fnott now have dedicated channels on irc.libera.chat!

  12. replace #rofi with #fuzzel ... again. #rofi is more powerfull, but sometimes freezes my system for 1-2 seconds (#opensuse).
    #fuzzel is just simple an works fine
    therefor went back to #wlogout as powermenu

  13. Still learning #bash scripts :)
    I love that I can simple create menus in #fuzzel #swaywm to scale my monitor and store the setting in a simple conf file just by echoing into a file.
    #unix #linux is great

  14. This monstrosity is what I came up with:

    flatpak run $(flatpak list --app --columns=name,description,application | grep -Fw -f <(flatpak list --app --columns=name,description | awk -F'\t' '{print $1 "......" $2}' | fuzzel --dmenu --match-mode=exact -w 120 | awk -F'\\.\\.\\.\\.\\.\\.' '{print $1 "\t" $2}') | awk -F'\t' '{print $3}')

    It being on one line is completely unnecessary and dumb.
    It searches through installed #flatpak packages AND their descriptions (which is what #fuzzel lacks, because some apps don't put their flatpak description into their .desktop file)