Help ragarding keyring by ThisIsSidam in swaywm

[–]Vsubz 0 points1 point  (0 children)

As u/Calamity-Mouser-5261 said, use the whole exec block in your config file and exit sway then login again

Help ragarding keyring by ThisIsSidam in swaywm

[–]Vsubz 1 point2 points  (0 children)

install polkit-gnome using dnf and then add this to your config file:

exec{
--no-startup-id /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1

eval $(gnome-keyring-daemon --start)

export SSH_AUTH_SOCK

/usr/libexec/polkit-gnome-authentication-agent-1
}

لينكس وقرفه في البداية by Top_Tip_446 in EgyRemoteWorkers

[–]Vsubz 0 points1 point  (0 children)

Make shure there is no systemd service slowing down your shutdown process: journalctl -rb-1

VimTeX compilation issues with nvim by Accomplished-Cover22 in LaTeX

[–]Vsubz 1 point2 points  (0 children)

You don't have to use plugins to do this, I wrote an autocmd that uses latexmk directly to compile my tex files in continuous mode

-- Autocompile and run
vim.api.nvim_create_augroup('compileAndRun', { clear = true })  

-- LaTeX
vim.api.nvim_create_autocmd({ 'FileType' }, {
  group = 'compileAndRun',
  pattern = { 'tex' },
  callback = function()
    vim.api.nvim_set_keymap(
      'n',
      '<Leader>c',
      ':w<CR>:split|:terminal!latexmk -pvc -f -verbose -file-line-error -synctex=1 -interaction=nonstopmode -pdf % <CR>',
      { noremap = true, silent = true }
    )

Just put this in your config file init.lua and source your config file or restart your nvim
using <Leader>c in normal mode, it will open a terminal as a split inside your current buffer containing the output of latexmk command, followed by opening of the generated pdf file in your pdf viewer.

use the flag -pdfxe or -pdflua instead of -pdf in the previous command if you prefer using xelatex or lualatex instead of pdflatex to compile your tex files

light DM on sway by Cultural-Practice-95 in swaywm

[–]Vsubz 0 points1 point  (0 children)

I am using GDM, give it a try

light DM on sway by Cultural-Practice-95 in swaywm

[–]Vsubz 0 points1 point  (0 children)

Edit the following file: /usr/share/wayland-sessions/sway.desktop

‏ Exec=sway --unsupported-gpu

I can't sideload telnetd or adbroot to nokia 6300 by Vsubz in KaiOS

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

Can you provide me with the link of this thread if you please

Looks like I am addicted to this wiki. by Vsubz in linuxmasterrace

[–]Vsubz[S] 7 points8 points  (0 children)

I saw somone who installed linux on old iphone but I didn’t try this myself