Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Search - "i3wm"
-
How is it possible that i remember fluently my aliases, shortcuts in vim, bindings in i3wm and yet forget the name of the person that was introduced to me 5 minutes ago.11
-
Got the laptop from the job.
Sadly we will develop in .net and angular.
Machine has windows and i can't use them but whatever it's a job so i have to adapt.
Turned up the machine, needed 30mins to set it up.
Meh. I miss my vim and i3wm.
HELP6 -
Been working on making my Linux installation pretty for the past few days – already posted on r/unixporn but I figured there might be a few people on here who would appreciate it. Link to the post: https://reddit.com/r/unixporn/...13
-
Saw a guy using his thinkpad in George Street Hungry Jack's(Sydney), decided to take a look on his laptop screen, he was running i3wm, wonder if he is on devrant. Feels good to see linux users around.1
-
Linux set up on laptop day 2: can't make the screen lock after resume from suspend, can't connect to my VPN, can't set key bindings in i3wm... But I did successfully set my wallpaper.10
-
The new guy:
- I'm a big fan of effectiveness and efficiency. The faster can you do the task - the better.
- naah, typing in the terminal is soo inefficient. Typing, remembering commands, parameters, paths... That's such a drag! Such a lag! Having a button I could click to do the job is far better!
- OSS is the root of all the evil!
- I'd like to try linux once again. I like it, hopefully I won't need to spend another couple of weeks setting up dual-gpu power management and searches for an Intel wifi's dual-antennae driver.
- I need a bluetooth mouse for my laptop. Using trackpoint or a touchpad is a nonsense [I agree abt the trackpoint]. Using a keyboard/typing for navigation?!? That's utter nonsense!
- I'd like to try i3wm, it looks effective and efficient
it's happened within the last month and I'm still trying to compile all this input into his preferences. So far I'm getting too many conflicting errors13 -
Customised my Ubuntu VM using
I3wm, polybar, Compton, conky, rofi,
And zsh shell !
The theme is inspired by unixporn subreddit post!
Btw it took 4days completely to do9 -
Went back to KDE over the weekend from i3wm. I was getting tired of having to configure my setup manually everytime I wanted to change a setting, and having things break, and having to bug fix said breaks, while also trying to handle Java MVC and node.js dev work.
Nope. Too much. I want the macOS experience but with the control of Linux. Much happier with KDE. It does use about 720MB more RAM on an average session but when you have 8GB does it really matter?
Now to figure out how to get Firefox to play nice with Plasma, or give Konqueror a spin.15 -
As I stated in a previous rant, I was finally able to run a linux desktop enviroment in the wsl in my laptop. Configuring it has been my adiction, and since then, I've put my projects aside to customize it. Here are the results.
Unfortunately I can't make i3gaps work, but this is fine too.17 -
I began my first Linux / i3 install 7 days ago when I posted my first rant... And today I'm declaring it officially *done*! (Mostly because if I don't, I'll spend another week configuring the damn thing.)
Here it is. Few minor things to edit/fix (like the fact that it sometimes randomly logs me out after coming back from hibernation... Yeah, "minor") but the functionality is mostly there. I can ("should") get back to work!16 -
Arch Rice Update
Distro: Arch Linux
WM: i3-gaps
Browser: qutebrowser with my GitHub open
Pomodoros: pomo
top: gotop
Vim: Open with Python code, taglist, powerline and gruvbox color scheme
Terminal: st, Luke Smith's build
Neomutt, configured by mutt-wizard
Vifm, with ripped CDs and projects open
Bar: bumblebee-status
Background: https://github.com/skuzzymiglet/...
Qutebrowser means I can finally abandon my mouse/trackpad (except for pesky video ediors and music notation software). Nice feeling not having to drag my fingers over a piece of metal. Try it out!
High-res:
https://ibb.co/mbL6yXb
Some dotfiles (not all): https://github.com/skuzzymiglet/...11 -
I fuckin love i3wm.
Especially on laptops. Not having to carry mouse around and being it so light, which saves you a lot of battery alongside with cpu/ram makes me wanna cry out of joy.1 -
Arch that I've had for a month
Applications: Firefox with riot.im chat, custom one-line music menu, vim markdown preview, gotop, vim with .zshrc, vim with README in Markdown, vim with python code
Bar: Polybar
Background: https://github.com/LukeSmithxyz/...
Arch Linux, i3 WM13 -
@JoshBent and @nikola1402 requested a tutorial for installing i3wm in a windows subsystem for linux. Here it is. I have to say though, I'm no expert in windows nor linux, and all I'm going to put here is the result of duckduck searches, reddit and documentation. As you will see, it isn't very difficult.
First things first: Install WSL. It's easy and there's a ton of good tutorials on this. I think I used this one: https://msdn.microsoft.com/en-us/...
Once you got it installed, I guess it would be better to run "sudo apt-get update" to make sure we don't encounter many problems.
Install a windows X server: X is what handles the graphical interface in linux, and it works with the client/server paradigm. So what we'll do with this is provide the linux client we want to use (in this case i3wm) with an X server for it on windows. I guess any X server will do the work, but I highly recommend vcXsrv. You can download it here:
https://sourceforge.net/projects/...
for i3 just "sudo apt-get install i3"
Configurations to make stuff work:
open your ~/.bashrc file ("nano ~/.bashrc" vim is cool too). You'll have to add the following lines to the end of it:
"""
export DISPLAY=:0.0 #This display variable points to the windows X server for our linux clients to use it.
export XDG_RUNTIME_DIR=$HOME/xdg #This is a temporary directory X will use
export RUNLEVEL=3
sudo mkdir /var/run/dbus #part of the dbus fix
sudo dbus-daemon --config-file=/usr/share/dbus-1/system.conf #part of the dbus fix
"""
Ok so after this we'll have a functional x client/server configuration. You'll just have to install your desktop enviroment of choice. I only installed i3wm, but I've seen unity and xfce working on the WSL too. There are still some files that X will miss though.
*** Here we'll add some files X would miss and :
With "nano ~/.xinitrc" edit the xinitrc to your liking. I only added this:
"""
#!/usr/bin/env bash
exec i3
"""
Then run "sudo chmod +x ~/.xinitrc" to make it an excecutable.
Then, to make a linking file named xsession, run:
"ln -s ~/.xinitrc ~/.xsession"
Now you'll be able to run whatever you put in ~/.xinirc with:
"dbus-launch --exit-with-session ~/.xsession"
There's a ton of personalisation to be done, but that would be a whole new tutorial. I'll just share a github repo with my dotfiles so you can see them here:
https://github.com/DanielVZ96/...
SHIT I ALMOST FORGOT:
Everytime you open any graphical interface you'll need to have the x server running. With vcXsrv, you can use X launch. Choose the options with no othe programs running on the X server. I recommend using "one window without title bar".10 -
It was so frustrating setting this one up. Lots of shouting in front of my monitors. But I think now I'm slowly getting somewhere with my first i3 setup.
Now to see if it will actually improve my workflow somehow.8 -
My current setup.
Doble screen on an Arch Linux with i3wm and conky. I love it 😍😍.
What do you think?5 -
My Deepin DE on Arch... I am working on i3wm with a polybar or a conky... Will post it if and when its done... Running on a busy schedule nowadays9
-
When you ought to be doing coding challenges but spend hours tweaking your i3 config instead...
(I'll stop when I get compton working, really I will...)1 -
So, 2 weeks ago, some guy in here left a comment about how great i3 is, so I was curious and installed it.
Since then I spend the same amount of time on playing with i3 as on doing actual work. Not sure if I love or hate that guy, but i3 really is awesome.5 -
OK, end of massive fucking 1 year long Dunning-Kruger wave. Time to learn C and algorithms. Looks like I'm Learning the curriculum in reverse order but nothing too bad.3
-
Okay i3wm users, what do you like to use for the bar manager? I'm trying to decide if I just want to customize the default bar or change it to something like lemonbar to patch the powerline look in my terminal. I don't want something that would be too complex to configure but still be powerful to use. (I've had issues with polybar but it may have been a fuckup from the script I tried to run with it.
Screenshot of my setup WIP.9 -
!rant
I need a new OS.
I have one year of Kubuntu, one year of Fedora KDE and there years of Arch Linux (Openbox, KDE, i3wm).
Now I'm undecided between debian and Arch Linux as a stable System.
What do you guys recommend me?
I hate picking huge software from AUR and need to compile it, but i hate having always a, yes stable package, but under versioned...
(and, exist a Debian minimal without everything Archstyle?)13 -
Man, I love i3wm/Xfce but I miss the flashiness of KDE. I think I'll try out KDE Neon in a vm and mull over the week if I should switch back...
#justLinuxproblems3 -
Had a better day with i3wm and Linux. Did a lot of futzing with config files and got it looking pretty cool. My status bar is relevant, urxvt is transparent, I'm happy with it.
I would have taken a screenshot to share with you all but uhh... I don't know how yet. :/6 -
I started using i3 window manager and My productivity Increased to 70%. I'm sure it'll still go up as I get used to it. I feel like I own the device now!😂1
-
I got so used to vim like bindings on spacemacs, i3wm, firefox(with vimium) in such a way that I was pressing j and k on Microsoft Word like a moron and wondering why that shit isn't scrolling up or down.
-
Bumblebee Status, as requested in https://devrant.com/rants/2248495/...
Arch Linux, i3 wm, bumblebee-status. i3 config open in window.
Can't wait to bloat it up even more with a pomodoro timer and custom stuff!
(music: Bach: Prelude and Fugue No 11 from The Well Tempered Clavier Book 2, played by Walter Giesking, so highbrow lol)3 -
Why didn't i use 2880x1620 resolution on my zenbook before?
Jesus it feels that i got so much more space and and it's pretty awesome
tmux + i3wm feels even more awesome4 -
Heyo fellow i3wm-users.
Please give me some inspiration for my next setup.
What are your color-settings do you have,
What applauncher do you use,
What programs work really well with i3 or something completely different?3 -
Am I the only one who turns off the PC by executing "die" in the command line?
(I use Archlinux with i3wm, so there is not a graphic button to turn off the PC, and writing shutdown -h 0 was too long)6 -
Back to using WSL because I suck at installing windows apps on Wine (and that I can't seem to connect to a WiFi with PEAP on Linux that the network admin know how to except on Windows).
So can't exactly rice Windows. I know I can with raindock and all that but its not the same as Linux. So I'm on WSL, installed tmux and wouldn't you know it, I found plenty of dot tmux files on Github.
But alas, its not the same as i3wm but its close.8 -
I know. I have posted a lot of images of my desktop earlier. They looked really good but something similiar could be made by a monkey. What i mean by that is i didnt put much effort into them.
This time i decided to start over and make a new desktop and actually put some effort into it. So here it is.1 -
So yesterday I installed Arch. Well, sort of. So far the GUI isn't configured so it's literally less convenient than an equally unconfigured TTY. But I'm getting there, today I connected to a secure Wi-Fi network. Tomorrow I expect to install something for power efficiency and start configuring stuff/creating a proper DE. Last time, when I stripped down Ubuntu and installed i3wm there, the first thing that bothered me was the lack of a wallpaper so I never got to issues like the keyring not unlocking, the x11 default font being two physical pixels tall, or added peripherals not being handled. This time my plan is to solve every issue as soon as I get there. For this reason I'll use a queue for managing my tasks rather than a stack like Google Keep.10
-
I can write million-dollar-software from scratch but I can't make my i3wm look like anything other than utter shit.2
-
Does anyone know why on i3wm always one of my cores is running at about 50%? On cinnamon it's fine, but on i3wm it's not.
CPU: i5 6600k @ 4.6GHz7 -
Archbang, Archlabs or Manjaro?
I am interested in using i3 as my wm. And because I will install it in my daily driver laptop, I want it to be reasonably stable and not with breaking updates.
Any thoughts and / or recommendations?11 -
OK - so I have a new job which I am loving but I am needing to use a Mac book which is a little frustrating. Coming from Linux with I3wm I have stuff just so.
The biggest change I miss is that I can't hover the mouse over windows to give them focus. Also middle click pasting would be awesome. Does anyone have any advice / solutions to make me feel at home? -
Working on installing manjaro with i3 on an old Thinkpad T61 I got for 50 dollars. It's taking forever cause the internet speeds suck here and I've never installed anything but Ubuntu and mint so I'm hoping it goes well.
Anyone have any tips got this device?
Also slightly drunk, so that's a thing I guess.3 -
That moment when you're away from home and you're performing a fucking system update (upgrade?) on fucking Gentoo and your fucking Chromebook can't fucking connect to your fucking computer at home running fucking Arch to offload fucking compilations over fucking SSH and fucking Polybar tells you that the fucking RAM is almost full and that both of your fucking Broadwell CPUs are fucking 100% on usage and even fucking Vim can't open your fucking work to add the fucking documentation for a fucking assignment from a fucking online course due today and everything's fucking stopped in time but the fucking window manager is still working normally?!!!!rant rand word -> prepend "fucking" away from home one-line is not necessarily >= 1 sentences rage i3wm is best2
-
i3wm, use with vim and terminal stuff = barely touch mouse xD
.
(I'm so obsessed with i3 that I try to re-create it in Windows : https://github.com/CSaratakij/...)
(still not full featured, but get the job done xD)6 -
friend: what os do you use?
me: arch linux
friend: what de do you use?
me: i3-gaps
friend: what editor do you use?
me: vim
friend: what file manager do you use?
* thinking i will say ranger *
me: vim-fs
...
friend: what browser do you use?
me: chromium+vimium
and that's when he lost his mind.10 -
I feel inseparable from the i3 tiling window manager.anyone else with the same situation.also does anybody here use i3-gaps too4
-
I couldn't find something on the internet, so maybe you can help me.
I run Debian + i3 on my laptop, and it takes incredible long, to start some software, especially from the Gnome-DE.
Does one of you know, why this occurs ?7 -
I am feeling really stupid right now.
How to run devrantron via the console (using manjaro with i3wm, installed via the aur).
I feel like i tried everything but i am sure i am overlooking something obvious.1 -
Fuck you motherfuckin fuck!!!
Just installed Fedora on my laptop,
Installed i3wm aannnndddd i3 crashs every time, when I try to run it.5 -
For the guys who uses pop! os ( apparently ubuntu breaks on rtx 3070 and don’t have the patience to find the proper drivers ) and i3wm how do you manage the scaling / dpi on different monitors ( i have 4 of them: 4k, 2k, 1920 and ultrawide 2560x1080 ) and apparently on 3 of them the cursor and font is fucking huge and on the 4k is too small. Tried scaling them manually using xrandr but it still doesn’t look right .6
-
Reinstalled my laptop from a hacked-together Ubuntu server install with i3wm and some other junk to a plain Ubuntu 18.04 install.
Man, I love this Gnome shell so much...
It's really nice when you have a small screen... -
Guys can you help me?
I want to by laptop instead of pc, but i dunno if I should go with asus zenbook ux310ux with i7 and 16GB of ram and linux or used macbook with probably i7 and 8GB of ram.
I can't make up my mind whether to choose linux or mac os. I like linux but i have a feeling that someday I will need to do something, and program for that will be windows/mac os only.
PS. Arch linux with i3wm4 -
I was using ubuntu mate 16.04 and recently installed i3 wm and I am using it regularly. Any suggestions for me?2
-
I’m very disappointed in PowerToys.
Especially the “FancyZones”.
I was hype when they first starting to work on their window manager.
But then....after a lot of feedback from community (which want something like an i3wm, fully keyboard driven) They come up with this??
I feels waste more time to manage window with FancyZones than not using anything at all.
I’ll stick with my custom hack window manager for now....
(Despite the limitation of win32api, it got a fully keyboard driven + auto tiling)
https://github.com/CSaratakij/...1