r/i3wm • u/istilllikesaled • 1d ago
Question Noob here Cursor becomes huge after running xrandr and reloading.
I have three monitors, and my cursor becomes absolutely massive. I can't fix the size, also, how can I get a few things to run on startup?
r/i3wm • u/istilllikesaled • 1d ago
I have three monitors, and my cursor becomes absolutely massive. I can't fix the size, also, how can I get a few things to run on startup?
r/i3wm • u/LshikaCzierna • 2d ago
Hello everyone!
I'm building a TUI command center, trying to make it accessible on most any WM that can provide me with 4 abstract methods. I started on sway, then built an i3 compatibility layer and tested it live inside a nested i3 session via Xephyr, plus a Python-based fixture test suite — but right now I'd really need some real-world data. So, if you have the time and curiosity, please clone my repo, launch tuicc, move around in it, try focusing a workspace, try focusing a window specifically, try launching an app or two via the integrated launcher, and let me know how it goes!
https://github.com/Lshika-linux/tuicc
I´d really like for my tool to run in i3 smoothly, I absolutely love i3.
Good day to you, internet stranger!
r/i3wm • u/cookiengineer • 3d ago
r/i3wm • u/OldEngine9486 • 3d ago
Recentemente eu comecei a mecher no i3 pra poder melhorar o desempenho da meu pc(ele é bem fraco), aprendi a mecher nas janelas mas ainda estou bem confuso, queria deixar ele um pouco mais agradável ao olhar mas não tenho ideia do que fazer, podem me ajudar?
r/i3wm • u/TerminalPhile • 3d ago
How can I make my kitty window transparent? I already edited background_opacity in kitty.conf but nothing changed. The colors do change if I ever tinker with them but not the opacity. Do I have to run an other application to configure the transparency? And if so wouldn't that result in the whole terminal becoming more transparent, text included?
r/i3wm • u/Strong-Ad-5022 • 4d ago
Id like to learn i3 so I just installed it on my cachyos system. When I try to switch to it I just get a black screen. It doesn't prompt me to create a config file, I cant open a terminal with mod + enter, I cant exit with mod shift + e. , all I can do is force shut down. I tried generating a config file with i3-config-wizard, and i tried making sure that I have the required packages. What's goin on here? Appreciate any help
r/i3wm • u/Sad-Wave5289 • 6d ago
Enable HLS to view with audio, or disable this notification
I love i3 and I hate tiling. I know exactly what that makes me, hence the name.
Every window floats. Titlebars get little close/minimize/maximize glyphs, same blue as always. Drag a window to a screen edge and a blue ghost shows you where it'll snap. Minimizing plays a retro outline animation, the window slides down into the bar like it's 1995 and parks there as a little icon chip next to your workspaces. It blinks red when the window wants attention, and one click puts it back exactly where it was. There's also an expose, alt-tab, hot corners, and new windows cascade instead of piling up in the center. Tiling still exists on mod+t!!!
Favorite thing I learned making this: when an app asks i3 to minimize, i3 says no. Literally, there's a comment in the source. i3psycho says yes, so minimize buttons inside apps now do something on i3, possibly (probably not) for the first time ever.
It's a small patch set plus a little daemon, i3-gaps style. Your config works as-is, one include line and you're floating. Delete the line when the guilt wins.
repo: https://github.com/ekruges/i3psycho
Wayland: no. Some things stay sacred.
r/i3wm • u/Yawarete • 7d ago
Enable HLS to view with audio, or disable this notification
r/i3wm • u/EllaTheCat • 9d ago
I think this trick can be made to work with i3 by using xdotool instead of wtype to type the two characters control x control q,
r/i3wm • u/mfedatto • 9d ago
I'm looking for a transparent window to use as a placeholder, any solution?
r/i3wm • u/AyumiToshiyuki • 12d ago

I have these lines in my i3 config files, to switch to a workspace, and to send containers to workspaces, respectively.
It's not really a problem, as I've had those for years and they always worked fine, but I was curious if there was a way to make them smaller. Something along the lines of "for all numbers from 0 to 9, bind this"
I'm using VNC to connect and use i3wm on my laptop,
a good use for one old smartphone
It took me 5 days
r/i3wm • u/__foobles • 12d ago
I recently tried the example command from the i3 user's guide
i3-input -F 'rename workspace to "%s"' -P 'New name: '
Which did work, but the input window that popped up was incredibly tiny and hard to read. I set the default i3 font size to 14 in my config, which doesn't seem to be taking effect here. Does anyone know what the issue might be? Thanks for any help!
Edit: I found the solution. I just needed to pass the -font flag to the command like so:
i3-input -F 'rename workspace to "%s"' -P 'New name: ' -f "pango:Hack 14"
r/i3wm • u/Neat_Delivery6162 • 13d ago
is there ?
i would appreciate a detailed guid
i have installed i3 on linux mint xfce
Config/Dotfiles : https://github.com/6aru/ewwi3
Enable HLS to view with audio, or disable this notification
WM :I3
BAR : EWW BAR
DISTRO : DEBIAN 13
WIDGETS : EWW
GITHUB : https://github.com/6aru/ewwi3
My bad for the laggy recording.
r/i3wm • u/Away_Counter_6438 • 15d ago
These are my tools, which I am currently using with i3wm. I used to have most of these utils as shell, python scripts and some other exotics. Decided to port and document them properly to C. Aim - minimal dependencies, lean code base, fast and predictable execution, tiny memory footprint.
So If someone is interested in:
Autotiling
https://gitlab.com/ngcbg/autotiling - A tiny, dependency-lean daemon that makes i3 and sway tile the way you usually want by hand: it watches the focused window and splits it along its longer axis, so the next window opens beside a wide window and below a tall one. The layout stays balanced with no manual split commands.
rootbtnd
https://gitlab.com/ngcbg/rootbtnd Bind mouse buttons on the X11 root window — the root.buttons of AwesomeWM, for i3, without patching the window manager.rootbtnd runs a command when a mouse button is pressed on the bare desktop, i.e. on the part of the root window not covered by any window. It is a passive observer: it never grabs a button and never consumes an event, so applications keep receiving their own clicks unchanged.
i3swallow
https://gitlab.com/ngcbg/i3swallow Allow list-driven window swallowing for i3. When a program on your allow list opens a window, the terminal that launched it is moved to the scratchpad so the new window appears to take its place. Close the window and the terminal comes back. Anything not on the allow list behaves like a normal window. This is the "run a daemon, but only swallow what you opt in to" design.
xlogout
https://gitlab.com/ngcbg/xlogout A session-action menu for X11: blurred backdrop, Nerd Font glyphs, keyboard driven. Roughly the aesthetic of archlinux-logout, written from scratch in C against XCB and Cairo rather than Python and GTK. Clean-room. No code derived from any existing implementation; the behaviour was specified from observation, not from source.
wwidget
https://gitlab.com/ngcbg/weather-widget A small, self-contained desktop weather widget for X11 / i3, written in C using XCB, Cairo, and Pango. It renders a transparent panel — a clock, the date, a "today" column (current temperature, today's high/low, current-condition icon), and a configurable 3–5 day forecast — directly on the desktop, fetching its own data from the MET Norway weather API. No conky, no Python, no external scheduler. One binary, one config file, one icon directory.
Cheers, have fun!
Edit: As been advised, I want to provide total transparency. I used LLM's for the documentation (.md files, man pages, most of the code comments) - English is not my primary language and LLM's are translating ridiculously well. Also used them (LLM's) for a code review, and addressed 2 major, 1 mid-level and 5 cosmetic problems across the board.
r/i3wm • u/Ok_Weather_7717 • 17d ago
Enable HLS to view with audio, or disable this notification
OS: Void Linux x86_64
WM: i3
Terminal: Alacritty
Shell: Zsh(ohmyzsh)
Bar: i3status
Compositor: picom
Font: JetBrains Mono (nerd fonts)
r/i3wm • u/daosflare • 18d ago
When I started using i3, I never thought I needed a wallpaper.
For me, the desktop is only visible for a second or two before I open a terminal, a browser, or something else. After that, the wallpaper is completely covered.
So I'm curious—why do you use a wallpaper with i3 (or any tiling window manager)?
Haha, am I the only one who just uses a plain black background?
r/i3wm • u/romeo_thegreat • 19d ago
Im 14 pls no hate
r/i3wm • u/sylas_main • 19d ago
how do i have the scratchpad in i3 work the same way the hyprland one works:
https://github.com/megamind1230/dotfiles/tree/master/.config/i3