• 27 Posts
  • 83 Comments
Joined 3 years ago
cake
Cake day: July 6th, 2023

help-circle




  • I’m not familiar with whisper.c++ but I did try faster-whisper. Unfortunately, the transcriptions took upward of 40sec and it didn’t offer live transcription, which is a nice feature of vosk. There’s a comparison in the readme with other differences. That said, it should be relatively modular. It shouldn’t take much to swap it back to whisper if that’s what you prefer to use. Whisper is in the nix flake as optional, and the program allows you to change models but i haven’t bothered trying to switch back to Whisper since Vosk has been more performant.












  • guttermonk@lemmy.mltoNix / NixOSGaming on NixOS ?
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 year ago

    I did both - I have steam and steam-run in environment.systemPackages and I have packages.steam.enable = true;

    Here’s my hardware config:

      hardware = {
        bluetooth.enable = true; # enables support for Bluetooth
        bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
        opengl = {
          enable = true;
          extraPackages = with pkgs; [
            intel-media-driver # LIBVA_DRIVER_NAME=iHD
            intel-media-sdk
            intel-vaapi-driver # For older processors. LIBVA_DRIVER_NAME=i965
            vaapiIntel
            vaapiVdpau
            libvdpau-va-gl
          ];
        };
        pulseaudio = {
          enable = true;
          support32Bit = true;
          extraConfig = "load-module module-combine-sink";
        };
        xpadneo.enable = true;
      };
    


  • guttermonk@lemmy.mltoNix / NixOSGaming on NixOS ?
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 year ago

    Just tried GE-Proton-9-9 and the play button goes to “stop” and then right back to “play”. I tried launching from terminal using nix-shell and steam-run so I could see the error messages when it crashes. Thanks for looking at your setup to see what was going on.









  • Unfortunately, --all isn’t an option. The following options are available in swayimg:

    Mandatory arguments to long options are mandatory for short options too.
      -r, --recursive      read directories recursively
      -o, --order=ORDER    set sort order for image list: none/[alpha]/random
      -s, --scale=SCALE    set initial image scale: [optimal]/fit/width/height/fill/real
      -l, --slideshow      activate slideshow mode on startup
      -f, --fullscreen     show image in full screen mode
      -p, --position=POS   set window position [parent]/X,Y
      -g, --size=SIZE      set window size: [parent]/image/W,H
      -a, --class=NAME     set window class/app_id
      -c, --config=S.K=V   set configuration parameter: section.key=value
      -v, --version        print version info and exit
      -h, --help           print this help and exit