dnkl changed the topic of #foot to: Foot - fast, lightweight and minimalistic Wayland terminal emulator || 1.13.1 || https://codeberg.org/dnkl/foot || channel logs: https://libera.irclog.whitequark.org/foot
<dnkl> gbrlsnchs: they use the monitor's DPI by default, rather than a hardcoded DPI of 96.
radu24275346 has joined #foot
radu2427534 has quit [Ping timeout: 260 seconds]
radu24275346 is now known as radu2427534
radu24275346 has joined #foot
radu2427534 has quit [Ping timeout: 256 seconds]
radu24275346 is now known as radu2427534
radu24275346 has joined #foot
radu2427534 has quit [Ping timeout: 246 seconds]
radu24275346 is now known as radu2427534
caveman has joined #foot
radu24275340 has joined #foot
radu2427534 has quit [Ping timeout: 256 seconds]
radu24275340 is now known as radu2427534
caveman has quit [Ping timeout: 255 seconds]
xd1le has joined #foot
radu24275342 has joined #foot
caveman has joined #foot
radu2427534 has quit [Ping timeout: 256 seconds]
radu24275342 is now known as radu2427534
radu24275346 has joined #foot
radu2427534 has quit [Ping timeout: 260 seconds]
radu24275346 is now known as radu2427534
caveman has quit [Ping timeout: 255 seconds]
caveman has joined #foot
alebastr has quit [Remote host closed the connection]
alebastr has joined #foot
bgs has joined #foot
radu24275347 has joined #foot
radu2427534 has quit [Ping timeout: 256 seconds]
radu24275347 is now known as radu2427534
bgs has quit [Remote host closed the connection]
alebastr has quit [Ping timeout: 252 seconds]
alebastr has joined #foot
radu24275340 has joined #foot
radu2427534 has quit [Ping timeout: 252 seconds]
radu24275340 is now known as radu2427534
radu24275342 has joined #foot
radu2427534 has quit [Ping timeout: 246 seconds]
radu24275342 is now known as radu2427534
acoolstraw has quit [Remote host closed the connection]
acoolstraw has joined #foot
ayushnix has joined #foot
ayushnix has joined #foot
ayushnix has quit [Changing host]
ayushnix has quit [Ping timeout: 260 seconds]
radu24275348 has joined #foot
radu2427534 has quit [Ping timeout: 260 seconds]
radu24275348 is now known as radu2427534
alexherbo2 has joined #foot
taupiqueur has joined #foot
hardcoresushi has joined #foot
<hardcoresushi> Maybe a stupid question but how can I spawn a new terminal running a program that spawn forks and close the terminal while keeping the forks alive ?
<hardcoresushi> I mean without using an interactive shell
alexherbo2 has quit [Remote host closed the connection]
<hardcoresushi> I fixed it by adding a small delay between the fork and the end of the parent process. Do you know why I need to do that?
taupiqueur has quit [Ping timeout: 256 seconds]
taupiqueur has joined #foot
radu24275343 has joined #foot
radu2427534 has quit [Ping timeout: 256 seconds]
radu24275343 is now known as radu2427534
xd1le has quit [Quit: xd1le]
hspak6 has quit [Quit: The Lounge - https://thelounge.chat]
hspak60 has joined #foot
cbb has joined #foot
<cbb> hardcoresushi: what do you mean by "a program that spawn forks"?
<cbb> if a small delay fixes it, maybe it's related to https://codeberg.org/dnkl/foot/issues/453
<hardcoresushi> cbb: I mean something like "nohup <some command> &" or a call to "fork()"
<hardcoresushi> I added a delay after the fork, not before spawning the process
<cbb> oh ok
<cbb> it's still kinda hard to know exactly what you mean though
<cbb> a step-by-step way to reproduce the problem would be helpful
<hardcoresushi> For example: foot sh -c "nohup sh -c 'echo 1 > log' &"
<hardcoresushi> doesn't even create the "log" file