Skip Navigation
Kasion Kasion @lemmy.mackners.com
Posts 9
Comments 9

Megadeth - Rust In Peace... Polaris (2004 Remix)

0

Cannibal Corpse - Priests Of Sodom (OFFICIAL VIDEO)

0

Machine Head - Davidian

0

Death - Flesh and the Power it Holds

0
[Hyprland] Keeping it basic with Fedora
  • The close window is binded to Meta+q and with a window manager you don't minimize windows. Instead you would utilize the workspaces to handle multi windows or just close what you don't need at that moment.

  • [Hyprland] Keeping it basic with Fedora
  • I have the close window binded to Meta+Q

  • Goreguts - Disincarnated

    Groovin Death Metal, need more of this

    0
    [Hyprland] Keeping it basic with Fedora
  • Believe this is what you're looking for here, https://wallpapersafari.com/w/tcOdHe

  • Unixporn @lemmy.ml Kasion @lemmy.mackners.com

    Keeping it basic with Fedora

    OS: Fedora 38

    Window Manager: Hyprland

    Terminal: Foot

    Shell: Zsh

    Launcher: Rofi

    Neovim config: NVChad

    Theme/colorscheme: Tokyo Night

    Bar: Eww

    16
    Using proton for pirated games on linux?
  • Tbh running them directly in steam has worked out great but bottles and/or lutris works as well.

  • Much better than the original

    0
    Red Hat’s commitment to open source: A response to the git.centos.org changes
  • Be nice if they at least gave Mike a picture for his blog posts.

  • Helix - A modal text editor
  • Seems like most rpm based distro still ship vi/vim and don't default to nano.

  • Helix - A modal text editor
  • I agree, never understood why they changed a lot of basic shortcuts away from what vi/vim/neovim uses.

  • Running Hyprland on FreeBSD

    Hello All!

    Just start with a basic guide to getting the Hyprland Wayland Window Manager running on FreeBSD 14.0 current. This is assuming you already have a working installation with a active network connection and sudo installed with the current user added to the "Wheel" and "Video" groups.

    You will also need a graphics driver installed which the offical FreeBSD guide covers quiet well (see below).

    https://wiki.freebsd.org/Graphics

    For Wayland to run properly we need a few dependencies installed and enabled in our rc.conf.

    1. Install DBus, seatd and Hyprland.

    sudo pkg install dbus seatd hyprland xdg-desktop-portal xdg-desktop-portal-hyprland

    2. Enable dbus and seatd in your /etc/rc.conf and reboot the system.

    Add the following lines to your /etc/rc.conf

    seatd_enable="YES"

    dbus_enable="YES"

    3. We now need a wrapper script to start Hyprland and set a few env values.

    First create your XDG_RUNTIME_DIR to ensure proper permissions.

    mkdir /tmp/hypr

    Then create the following wrapper script and make it executable.

    #!/bin/sh

    export XDG_RUNTIME_DIR=/tmp/hypr

    export XDG_CURRENT_DESKTOP=Hyprland

    export WAYLAND_DESKTOP=wayland-1

    export XDG_SESSION_TYPE=wayland

    export XKB_DEFAULT_RULES=evdev

    export GDK_BACKEND=wayland

    export QT_QPA_PLATFORM=wayland

    export QT_QPA_PLATFORMTHEME="qt5ct"

    export QT_WAYLAND_DISABLE_WINDOWDECORATION=1

    export SDL_VIDEODRIVER=wayland

    export MOZ_ENABLE_WAYLAND=1

    export WM=sway

    export CLUTTER_BACKEND=wayland

    export BEMENU_BACKEND=wayland

    exec ck-launch-session dbus-launch Hyprland

    4. We should now be able to start Hyprland from the tty with the script listed above!

    Again, this is just covering the basics of getting Hyprland running but does not go over adding additional software like a application launcher like Rofi or a Wayland bar like waybar or eww. I will make another post adding these in the future with some basic configs.

    0

    You Bastards!

    0
    Would me self-hosting a personal instance make things worse for everyone else?
  • Tbh to me it just feels like we are in the early stages of a huge boom of users. I'd assume in a few months most of these growing pain issues will be gone. IF anything, maybe wait until the load balancing is settled and make your instance (but no issues if you want to help stress test the system).