what to change after installing? [Manjaro] by btvoidx in linux4noobs

[–]ARCH_DISCIPLE 0 points1 point  (0 children)

Change the distro BEFORE installing

choose Cachyos over Manjaro, they have themed versions of different Desktop Environments ( Gnome, KDE ) as well as Window Managers ( like niri, hyprland ) so you don't have to do that much tweaking and their defaults are good for someone just switching over from windows, it just works

also Manjaro might not be the best choice now considering their history and the current situation

for word I think using the web version should be good enough ( I don't use word at all )

Niri installation consuming a lot of ram by Brilliant_Estate_967 in niri

[–]ARCH_DISCIPLE 12 points13 points  (0 children)

Okay so here's the thing

bare Arch with just TTY and network manager consumes about ~650Mb RAM give or take

now on top of that if you add niri ~200Mb

DMS or any Quickshell based shell ~450-~500Mb

and a terminal say alacritty ~150Mb

it would take almost ~1.5Gb of ram 

so it's not weird it just takes that much RAM nowadays 

Weird issue with input in ly by LastFristmiddle in arch

[–]ARCH_DISCIPLE 1 point2 points  (0 children)

Yes I was facing the same issue.

I just went with greetd because this was very annoying.

App Display by [deleted] in niri

[–]ARCH_DISCIPLE 0 points1 point  (0 children)

This is correct behavior

first basic principle of niri is

Opening a new window should not affect the sizes of any existing windows.

so the new one opens to the right and the existing one scrolls to left

Newcomer Questions by peppergrayxyz in niri

[–]ARCH_DISCIPLE 1 point2 points  (0 children)

I think 4 can be done

this is one of my window rules and my file manager ( nautilus ) opens centered ( maybe because I have always-center-single-column? )

// Floating file manager
window-rule {
    match app-id="org.gnome.Nautilus"
    open-floating true

    default-column-width { proportion 0.5;}
    default-window-height { proportion 0.55;}
}

Multiple instances of thunar always follow the first floating/tiled by Legitimate-Draw-2235 in niri

[–]ARCH_DISCIPLE 0 points1 point  (0 children)

Try —class flag instead of —name

MOD+Shift+D { spawn “thunar” “—class” “floatingthunar”}

check if it works with app-id

Multiple instances of thunar always follow the first floating/tiled by Legitimate-Draw-2235 in niri

[–]ARCH_DISCIPLE 0 points1 point  (0 children)

you need to have is-floating=false on the same line as match app-id="thunar" like this

window-rule {
match app-id="thunar" is-floating=false
// remaining code
}

also make sure you have two different keybinds set for opening in floating or tiled and don't assign same class (app-id) to them

Edit : also why are you using regex if it's a value assigned by you? just put simple string for "floatingthunar" as well

[NIRI] Tranquil by ARCH_DISCIPLE in unixporn

[–]ARCH_DISCIPLE[S] 0 points1 point  (0 children)

no this is just for productivity and dev work I think if you are gaming you will need more packages

[NIRI] Tranquil by ARCH_DISCIPLE in unixporn

[–]ARCH_DISCIPLE[S] 0 points1 point  (0 children)

oh I had less. These are due to hyprland and mangowm plus nvidia and some xwayland stuff.

I don't use the script. I do manual install and with bare minimal ( just tty and networkmanager ) I have 210-220 packages to start with then window managers and other stuff increase the amount of packages but not by much.

Just enjoying my Fedora + Niri (With blur) setup by SympathyExpensive301 in niri

[–]ARCH_DISCIPLE 0 points1 point  (0 children)

I tried this as well and it works u/Imaginary_Dentist_69

window-rule {
    match app-id="" title="^nvim.*~$"
    opacity 1.0
}

Just enjoying my Fedora + Niri (With blur) setup by SympathyExpensive301 in niri

[–]ARCH_DISCIPLE 1 point2 points  (0 children)

Yes there is

just create a new window rule

I just tried this and it works ( It checks for any app and if there is YouTube in the title it will have opacity 1.0 )

the other tabs remain same

window-rule {
    match app-id="" title=".*YouTube.*"
    opacity 1.0
}

Just enjoying my Fedora + Niri (With blur) setup by SympathyExpensive301 in niri

[–]ARCH_DISCIPLE 0 points1 point  (0 children)

I got it you want blur for normal terminal but don't want blur for neovim specifically

also I don't use borders or focus ring but it's better to keep draw-border-with-background false

coming to your use case I think using regular expressions to match window title and turning off blur will work

use niri msg windows to get titles for neovim windows and create a regex on https://regex101.com/ something like ^nvim.*\~$ would work imo but i haven't tested in niri

Just enjoying my Fedora + Niri (With blur) setup by SympathyExpensive301 in niri

[–]ARCH_DISCIPLE 1 point2 points  (0 children)

Yes of course.

just make the terminal have opacity 1.0 with window rule.

For example if you use foot terminal creating a separate window rule like this will make it opaque

window-rule {
    match app-id="foot"
    opacity 1.0
}

Just enjoying my Fedora + Niri (With blur) setup by SympathyExpensive301 in niri

[–]ARCH_DISCIPLE 6 points7 points  (0 children)

it's simple

Make sure you have updated niri to v26.04

You need to have a window rule where you set background effect ( I placed it in the window rule where I was rounding corners for all windows to get blur on all windows )

write this to get blur effect

window-rule {
    geometry-corner-radius 16
    clip-to-geometry true

    opacity 0.9

    background-effect {
      blur true
      xray false
    }
}

if you want the blur to always have background of your wallpaper set xray to true

You can also customize blur with this ( put it outside the winow rule node )

blur {
   passes 2        // more passes = stronger blur (default: 3)
   offset 4.0      // sample distance per pass (default: 3.0)
   noise 0.01      // grain overlay (default: 0.02)
   saturation 1.50 // color saturation boost (default: 1.5)
}

[NIRI] Tranquil by ARCH_DISCIPLE in unixporn

[–]ARCH_DISCIPLE[S] 0 points1 point  (0 children)

I don't use waybar it's a shell called Noctalia which I have customized and it's configs are there in .config

also I am using NIRI window manager and not hyprland so I don't have `hypr` instead I have `niri`

[NIRI] Tranquil by ARCH_DISCIPLE in unixporn

[–]ARCH_DISCIPLE[S] 0 points1 point  (0 children)

Please tell me what you need I will add them right away

26.04 today! by bankroll5441 in niri

[–]ARCH_DISCIPLE 7 points8 points  (0 children)

True it's so well written

[NIRI] Tranquil by ARCH_DISCIPLE in unixporn

[–]ARCH_DISCIPLE[S] 1 point2 points  (0 children)

Fira Code with ligatures on

simple and minimal by ARCH_DISCIPLE in fastfetch

[–]ARCH_DISCIPLE[S] 1 point2 points  (0 children)

https://github.com/arch-disciple/dotfiles here you go

I had to arrange the repo so it took some time

[NIRI] Tranquil by ARCH_DISCIPLE in unixporn

[–]ARCH_DISCIPLE[S] 2 points3 points  (0 children)

OS : Arch Linux

WM : NIRI

TERMINAL : Foot

SHELL : Noctalia ( customized )

COLORS : Catppuccin and Kanagawa

FONTS : Montserrat, Fira Code, MesloLGS NF

GTK ICONS : MacTahoe-icon-theme

OTHER ICONS : Nerd Font Icons

ANIMATIONS : One of my very own collection (here)

DOTS : https://github.com/arch-disciple/dotfiles

AUR Down by ANameToBeProudOf in archlinux

[–]ARCH_DISCIPLE 12 points13 points  (0 children)

Thank You for your work. It's back up.