hey, think you might like this because of what you mentioned about the start menu, i recommend OpenShell! it basically replaces the start menu with a windows 7 like version of it, the ugly ads are gone, and it doesnt open stuff in your browser, however if you want it to, it will actually do it in your preferred browser (mine is firefox).
@alfamari76755 күн бұрын
I've found PowerToys application launcher to be pretty underwhelming compared to alternatives. If you've never used one before it feels amazing, but then you find Listary or Fluent Search and realize it pales in comparison. I use both Listary and Fluent search but Listary does the basics better, has a way to substring match through directory structures to filter results better, faster searching/performance, and integrating with pop-up dialogs from other programs is killer (so many ppl on other launchers ask for this feature from Listary, but I haven't seen anyone else adopt it and it kinda feels mandatory). Fluent Search on the other hand has a TON of advanced features and customization good for power users. Text editor with syntax highlighting allows to very quickly edit text during the search, click on screen elements with keyboard, easy to use macro creator, manage windows (switch to/close, though maybe not as useful if your using a tiling wm), even a web browser lol, and much, much, more. The dev is also super friendly and active constantly helping ppl, addressing bugs, and adding requested features. Also, at least on windows 10 (I don't use 11), there are ways to remove the ads and websearch from windows search (so damn annoying!!) so it only searches local files, I think it was winaero tweaker.
@Qwuski5 күн бұрын
im on arch hyprland btw
@LernerLuis20055 күн бұрын
I love those configs of your nvim, can i see the plugins or configs you got there?
@codingwithsphereКүн бұрын
Yes, I made a video on it not too long ago. It's also on my github
@LernerLuis2005Күн бұрын
@@codingwithsphere amazing comrade
@blanked1885 күн бұрын
love2d is also good and its documentation is easy to understand
@ProduDev6 күн бұрын
I followed along and completed this on my lunch break, and I'd honestly pay a sub fee for a collection of "straight to the point" small video exercises like this (or even just markdown text). It helped me instantly jog my brain back into Golang after a month away from it, and it'd be pretty valuable to have a collection of exercises like this that showcase cool ideas and are just plain fun to complete
@codingwithsphere6 күн бұрын
thank you for the feedback! Im definitely considering making a small series on Go for Patreon supporters in the future
@MiguelPerez-vc7it8 күн бұрын
they hyperland my boi windows 🙏😭
@chilli_con_carne10 күн бұрын
well at least you got the gay part right
@VieiraBBX10 күн бұрын
if you map harpoon to <leader>1-5, its way easier to use each pinned file :) I use: <leader>h -> add file <leader>H -> open harpoon menu <leader>1-5 -> open 1-5 harpoon file
@antoineleduc761110 күн бұрын
Damn that’s a cool setup, reminded me I should do a custom setup like yours (understand : « me *stealing* your config ») Instead of just using LazyVim default
@ManlovesBlue10 күн бұрын
ram monster
@BoCruzMH10 күн бұрын
It's really insane and great video !
@Gonz-o8j11 күн бұрын
I debloated windows with a program called bloatynosy app, recomended
@Invuska11 күн бұрын
I was wondering if there were any good alts to my Komorebi + yasb setup, since it does have some quirks that while not dealbreakers can be annoying. Seems like this is convincing me to give other 'WMs' a shot. Very cool.
@nesatec880612 күн бұрын
Hi, i really like the Video, but how do i build the csv file in my Content.mgcb? I cant find the Importer and everything
@subhuman322712 күн бұрын
lemme know when you have a way to make windows fully controller compatible or maybe linux os with all the things that make it work like windows but also look clean with full controller support
@horiagug12 күн бұрын
Do a tutorial series
@samanzakeri240312 күн бұрын
so bro just made Linux based on the windows kernel 💀💀
@mainone93012 күн бұрын
whats that at the top of your screen , ps your videos are cozy and i like them
@josesalinas797013 күн бұрын
Bro, people who spend so much time customizing their computers actually do nothing because they cant start until their computer looks perfect.
@charlesturner89713 күн бұрын
You spent so much time adding on rice but didn't actually bother getting windows itself set up correctly, you can turn off web searching and if you use Pro or higher you don't see any of that stuff on the start menu.
@charlesturner89713 күн бұрын
How to make windows reddit
@berthold6412 күн бұрын
Lol this
@silvyboi415013 күн бұрын
may i ask why you still use windows (not judging im genuinely curious)
@GabrielM0113 күн бұрын
might aswell just use linux
@ehl-1213 күн бұрын
WezTerm looks dope, but I'm not sure if it's enough to get me to move from my Alacritty + Tmux config XD. Regardless though, awesome video, and amazing channel! Keep it up!
@videosenjoyer13 күн бұрын
If you want to try a cool wayland only term, I suggest foot :p
@h3dzer13 күн бұрын
Put it on unixporn and no one will suspect a thing
@emptycode178214 күн бұрын
Cool and smooth, not anything complicated but there is alot of joi in these videos , sometimes i like to sit back and watch these , keep it up :D
@codingwithsphereКүн бұрын
thanks !
@btarg114 күн бұрын
I'd recommend AltSnap for anyone who wants a decent Windows experience. As a KDE main on my Linux laptop, I love being able to use the same WM features in Windows 11!
@larsklein508614 күн бұрын
I was about to comment "Oh, I'd be curious to see a go game development tutorial/series" and then I checked your channel and voila there it already is :) Thank you, I will watch this. One remark for the video: I think OOP and inheritance may look useful for game development, but they come at a performance penalty. Almost everything in Java/C#/Python is a pointer to some form of Object on the heap (it's not just a pointer, it also contains a vtable for method resolution, and it's garbage collected). This makes it very easy to create lists of GameObjects (Enemies, PhysicsObjects, Items, etc). But when you iterate through these list, you iterate through pointers, and to actually access the underlying object, you need to follow the pointer. The objects may be scattered around, probably not with a contiguous memory layout. That is very slow. An ECS is based on a different design pattern of entities and components. Entities can have different constellations of components. For example, an enemy can have a pathfinding component, a physics component, an emitting-sound component, etc. The ECS tries to group components in memory, so that when you want to do something with all entities that emit sound, you can iterate through the emitting-sound components efficiently. I have not read up on ECS in Go. If you make a video, or decide to create your own, I'd be curious to watch it.
@555mek15 күн бұрын
I've heard Robert Pike say it's Go, not golang
@mmj591615 күн бұрын
Ironically bro is using the same type of config as I use in windows.
@red_l3gion15 күн бұрын
you should do a windows 10 version
@brunomello749915 күн бұрын
nice
@kushyglowy840915 күн бұрын
nice
@thisisreallyme313016 күн бұрын
Yes!! Go terminal games. This is a once per week search almost. TY.
@gijspampiermole971816 күн бұрын
How did you get nvim to work on windows? I'm getting loads of errors whenever i clone my Linux nvim config to my windows pc, all related to windows
@dan8ball2216 күн бұрын
You have quite a nice voice, thanks for the tutorial!
@IsaacFoster..16 күн бұрын
Bro lives the Linux experience in Windows 11
@thedarck382716 күн бұрын
Dude, just install linux
@YoruAkio16 күн бұрын
What font do you use from the thumbnail (the @)
@golvellius685516 күн бұрын
Imagine coating a 💩 with 🍬
@Kingmaxx2217 күн бұрын
I've been trying to set the opacity of zebar but im so lost
@thetical-yew17 күн бұрын
thanks man, you led me down a rabbit hole looking at customizations for windows. I had no idea all of this was available!
@aquilafasciata578117 күн бұрын
Go pluck getting this on your work computer lol
@__vha17 күн бұрын
I remember going on 4chan and just scrolling the windows and linux rice threads. Good times.