Skip Navigation
Looking for an airline replacement
  • After hours of trying out different plugins the closest I could find is the lualine & tabby combination:

    About to test it during work, at first look it looks like it has everything I need, only shows current buffers in tab, and in correct order

    local lualine_theme = require("highlight").lualine_theme
    require("lualine").setup({
    	options = {
    		icons_enabled = true,
    		theme = lualine_theme,
    		component_separators = { left = "", right = "" },
    		section_separators = { left = "", right = "" },
    		disabled_filetypes = {
    			statusline = {},
    			winbar = {},
    		},
    		ignore_focus = {},
    		globalstatus = true,
    		refresh = {
    			statusline = 1000,
    			tabline = 1000,
    			winbar = 1000,
    		},
    	},
    	sections = {
    		lualine_a = { "branch" },
    		lualine_b = { empty_section },
    		lualine_c = {},
    		lualine_x = {},
    		lualine_y = { { "diagnostics", sections = { "error", "warn" } } },
    		lualine_z = { "location" },
    	},
    	inactive_sections = {},
    	tabline = {},
    	winbar = {},
    	inactive_winbar = {},
    	extensions = { "fugitive", "nvim-tree" },
    })
    
    local theme = {
    	fill = "TabLineFill",
    	-- Also you can do this: fill = { fg='#f2e9de', bg='#907aa9', style='italic' }
    	head = "TabLine",
    	current = "TabLineSel",
    	tab = "TabLine",
    	win = "TabLine",
    	tail = "TabLine",
    }
    
    vim.o.showtabline = 2
    local tabby_theme = require("highlight").tabby_theme
    require("tabby.tabline").set(function(line)
    	return {
    		line.tabs().foreach(function(tab)
    			local hl = tab.is_current() and tabby_theme.current or tabby_theme.tab
    
    			return {
    				line.sep("", hl, tabby_theme.fill),
    				tab.number(),
    				tab.name(),
    				line.sep("", hl, tabby_theme.fill),
    				hl = hl,
    				margin = " ",
    			}
    		end),
    		line.spacer(),
    		line.wins_in_tab(line.api.get_current_tab()).foreach(function(win)
    			local hl = win.is_current() and tabby_theme.current or tabby_theme.tab
    
    			return {
    				line.sep("", hl, tabby_theme.fill),
    				win.buf_name(),
    				line.sep("", hl, tabby_theme.fill),
    				hl = hl,
    				margin = " ",
    			}
    		end),
    		hl = tabby_theme.fill,
    	}
    end)
    
  • Looking for an airline replacement

    Hi! I recently decided to switch from airline, but can't find a status / tab line plugin that works just like I want it to. Lualine is the closest I could get, but the following features from tabline is really missing from me.

    I couldn't get the buffer component to only show those buffers that are open on the current tab, and in the visual order that my splits are. Also I can't get it to hide hidden buffers, after opening and closing a few terminals it gets polluted with a tons of unnecessary tabs

    The closest I could get is with "tiagovla/scope.nvim", but that does not make it respect the order of my splits, messes with sessions and doesn't solve the problem with the hidden buffers

    Is there a tabline extension that is simple and fast, and can do what I described? Thanks in advance

    1
    How do I turn this stupid brain of mine off?
  • last time (~ half year ago) they thaught me this they said chest compression is more than enough. there should be enough oxygen in the lungs and blood till professional help arrives, and as you said most of the time airway is blocked in these situations

    also most people are extremely unconfortable to blow air through someones nose/mouth, so it incrreases the number of people that are willing to help

    at least sa far as i know

  • Looks like you can't even download the Battle.net client for Linux now

    The button is faded out for me: https://download.battle.net/en-us/desktop

    But as soon as I change my user agent suddenly it works 🤔 However starting it with wine gives an error that it can't connect to the server. No more blizzard games I guess

    ---

    With a previously installed client I was able to buy and download Diablo II: Ressurected, but after starting it it immediately stated that my setup was to outdated to run this game. I highly doubt that, since I have more than the minimum requirements.

    I found out that you have to fool the game to make it start: https://forums.lutris.net/t/solved-diablo-ii-resurrected-fails-to-start-with-failed-to-initialize-graphics-device-error/13878/3

    > Problem was with ingame GPU and driver version detection

    The lutris battle.net installer however did not work, and I didn't have the mood to debug it.

    Not so surprising, but they don't support linux: https://us.forums.blizzard.com/en/d2r/t/failed-to-initialize-graphics-device/5896/67

    > Note: Linux, bootcamp, or running the game in a virtual OS is not supported

    13
    Ability to block domains

    Rif has a feature where you can filter out posts which links to a specific domain (regex like syntax).

    For example you can block all posts which redirect to youtube.com or youtu.be.

    Couldn't find such feature right now, but would love to see this.

    I hate clicking on youtube posts, I don't watch content with sound, and it also opens the youtube android app with ads and everything.

    This could be extended to a feature to filter out posts from specific instances till its not implemented in the backend.

    These could be done on the frontend like after the client recieved the posts to display it filters them by domain / instance by user defined rules

    1
    Rooting android & banking apps

    I always favored rooting my phone, used to have a redmi 4x with magisk and lineage os. It was time for a new phone, and got a xiaomi note 10S.

    On the 4x I noticed that play store did not list revolut and other banking apps, and the bank Im using said I can't use the app on rooted phone, so I decided not to root my 10S.

    However I still think about unlocking and rooting it, but I'm afraid of my banking apps no longer working.

    I still would like to use my phone like I did before: NFC payments (google pay), banking apps, play store for said apps, google maps.

    Is it possible to create a setup like this? Should I even try?

    17
    InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)CA
    catlover @sh.itjust.works
    Posts 5
    Comments 33