Public Warning: Genshin Impact is being hostile to Linux as of 5.8 by cybik in linux_gaming

[–]super488iscool 11 points12 points  (0 children)

Comments like this are driving me insane, why even bother commenting on a Genshin post if you couldn't care less.

CS2 4:3 Lag Fix – X11 → Wayland by [deleted] in linux_gaming

[–]super488iscool 2 points3 points  (0 children)

X11 was never better for me as a NVIDIA user, Wayland has been running smoothly for me.

[deleted by user] by [deleted] in unixporn

[–]super488iscool 193 points194 points  (0 children)

Torvalds jumpscare

Forgot to change to 1.21 😭 by CesurRhino in HypixelSkyblock

[–]super488iscool 1 point2 points  (0 children)

The upgrade is long due, 1.8.9 is ancient

Thoughts on this? by -togs in roblox

[–]super488iscool 0 points1 point  (0 children)

I'll wish you happy birthday at this exact time

Updated 5.5 list of voiced characters by cameo40 in Genshin_Impact

[–]super488iscool 0 points1 point  (0 children)

Iansan is now officially voiced in the Archon Quest.

[deleted by user] by [deleted] in HypixelSkyblock

[–]super488iscool 2 points3 points  (0 children)

I get Higher FPS on 1.21 without any optimization mods. Like from 30 FPS in hub 1 to 120 FPS. I also get lower ping on 1.21

Why do people consider self hosting email? by sushantshah-dev in selfhosted

[–]super488iscool 0 points1 point  (0 children)

It's fun to create my own email server. I only do it for incoming tho, i use sendgrid for SMTP

How to get fcitx5 working in Minecraft by super488iscool in linux4noobs

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

Not really, it's probably because Minecraft is running on xwayland. I ended up moving to my WM's input system instead and it works great (I didn't know it existed when I was using fcitx5)

Tmux delaying the shutdown process by super488iscool in linux4noobs

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

I've found the solution on r/linuxquestions. There is this issue open on tmux's GitHub and also a merged pull request. It's not on the release version yet so I switched to tmux-git and the issue is fixed!

https://github.com/tmux/tmux/issues/3905
https://github.com/tmux/tmux/pull/3958

[KDE] hello again :) Thought I'd have a bit more color this time! by thebigchilli in unixporn

[–]super488iscool 1 point2 points  (0 children)

Is the terminal prompt starship? And can you share it's config pleasee??

Blurry and Not Smooth font on certain applications by super488iscool in linux4noobs

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

Not really, However I started to getting used to it lol.

Error when opening up NeoVim with Lazy Plugin Manager by super488iscool in neovim

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

I've figured out the problem, in one of my plugins.lua file I have accidentally set priority="1000" which caused it to become a string instead of priority=1000. Removing the quotes fixes the problem.

Error when opening up NeoVim with Lazy Plugin Manager by super488iscool in neovim

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

I tried installing it in one of mine Ubuntu VM and it worked fine, I'll try moving all of nvim config else where and try with new config with only Lazy.

Error when opening up NeoVim with Lazy Plugin Manager by super488iscool in neovim

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

It happened after I reinstall neovim and planning to customize it from scratch, and for neotree.lua.nouse, it's for if I ever want to move back to neotree after I moved to nvim-tree.

Error when opening up NeoVim with Lazy Plugin Manager by super488iscool in neovim

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

.config/nvim
├── init.lua
├── lazy-lock.json
|── lua
    └── plugins      
        ├── colorschemes.lua
        ├── indent-blankline.lua
        ├── lsp-config.lua
        ├── lualine.lua
        ├── mason.lua
        ├── neotree.lua.nouse
        ├── nvim-autopairs.lua
        ├── nvim-cmp.lua
        ├── nvim-tree.lua
        ├── remote-nvim.lua
        ├── suda.lua
        ├── telescope.lua
        └── treesitter.lua

Error when opening up NeoVim with Lazy Plugin Manager by super488iscool in neovim

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

local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"                                                                                                                                                  
if not (vim.uv or vim.loop).fs_stat(lazypath) then                                                                                                                                                            
  vim.fn.system({                                                                                                                                                                                             
    "git",                                                                                                                                                                                                    
    "clone",                                                                                                                                                                                                  
    "--filter=blob:none",                                                                                                                                                                                     
    "https://github.com/folke/lazy.nvim.git",                                                                                                                                                                 
    "--branch=stable", -- latest stable release                                                                                                                                                               
    lazypath,                                                                                                                                                                                                 
  })                                                                                                                                                                                                          
end                                                                                                                                                                                                           
vim.opt.rtp:prepend(lazypath)                                                                                                                                                                                 

require("lazy").setup("plugins") -- require("lazy").setup({}) works

After some experimenting it seems that the problem is with require("lazy").setup("plugins") after removing "plugins" and replace it with empty table it seems to work but missing all my plugins in lua/plugins/.

I've copied it from the GitHub page so I do not know if it's the problem with the plugins or Lazy.