Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wezterm half display on wayland #6583

Closed
Gurjaka opened this issue Jan 18, 2025 · 0 comments
Closed

Wezterm half display on wayland #6583

Gurjaka opened this issue Jan 18, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@Gurjaka
Copy link

Gurjaka commented Jan 18, 2025

What Operating System(s) are you seeing this problem on?

Linux Wayland

Which Wayland compositor or X11 Window manager(s) are you using?

Qtile Wayland

WezTerm version

wezterm 6c443be

Did you try the latest nightly build to see if the issue is better (or worse!) than your current version?

Yes, and I updated the version box above to show the version of the nightly that I tried

Describe the bug

Wezterm is fully loaded, but only half of the terminal is open ( I wish I could upload image here )

To Reproduce

I haven't done much, I just installed flake version of wezterm, my config is mostly default, I only changed colors cheme and font

# flake.nix    
{
  description = "Nixos config flake";

  inputs = {
    nixpkgs.url = "github:arjan-s/nixpkgs/bump-qtile";

    home-manager = {
      url = "github:nix-community/home-manager";
      inputs.nixpkgs.follows = "nixpkgs";
    };

    qtile-flake = {
      url = "github:gurjaka/qtile";
      inputs.nixpkgs.follows = "nixpkgs";
    };

    qtile-extras-flake = {
      url = "github:elparaguayo/qtile-extras";
      flake = false;
    };
    wezterm = {
      url = "github:wez/wezterm?dir=nix";
      inputs.nixpkgs.follows = "nixpkgs";
    };

    spicetify-nix = {
      url = "github:Gerg-L/spicetify-nix";
      inputs.nixpkgs.follows = "nixpkgs";
    };

    zen-browser.url = "github:Gurjaka/zen-browser-nix";
  };

  outputs = {
    self,
    nixpkgs,
    home-manager,
    ...
  } @ inputs: let
    # System settings
    system-settings = {
      system = "x86_64-linux"; # System architecture
      host = "desktop"; # select hostname desktop/laptop
      user = "gurami"; # select user
      drivers = "amd"; # select drivers amd/nvidia/intel
      timezone = "Asia/Tbilisi"; # select timezone
      locale = "en_US.UTF-8"; # select locale
      shell = "zsh"; # zsh/fish/bash
    };

    propagated-args =
      system-settings
      // {
        inherit inputs;
      };
  in {
    formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
    nixosConfigurations = {
      # Host config
      "${system-settings.host}" = nixpkgs.lib.nixosSystem {
        specialArgs = propagated-args;

        modules = [
          ./nixos/configuration.nix
          ./overlays.nix
          home-manager.nixosModules.home-manager
          {
            home-manager = {
              useUserPackages = true;
              useGlobalPkgs = true;
              extraSpecialArgs = propagated-args;
              users = {
                "${system-settings.user}" = import ./home-manager/home.nix;
              };
              sharedModules = with inputs; [spicetify-nix.homeManagerModules.default];
            };
          }
        ];
      };
    };
  };
}

Configuration

no config

Expected Behavior

the terminal should be starting normally!

Logs

Debug Overlay
wezterm version: 6c443be x86_64-unknown-linux-gnu
Window Environment: Wayland
Lua Version: Lua 5.4
OpenGL: AMD Radeon RX 7800 XT (radeonsi, navi32, LLVM 19.1.5, DRM 3.59, 6.12.8-xanmod1) 4.6 (Compatibility Profile) Mesa 24.3.3
Enter lua statements or expressions and hit Enter.
Press ESC or CTRL-D to exit

Anything else?

Image

@Gurjaka Gurjaka added the bug Something isn't working label Jan 18, 2025
@Gurjaka Gurjaka closed this as completed Jan 18, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant