Skip Navigation
B.C. couple teaches rescued rats to drive tiny cars
  • I've been hoping someone would start a gambian pouched rat breeding project because of exactly this

  • Political ads? Pro-gun ads!?
  • I intend to switch to thunder when they add hold for peek https://github.com/thunder-app/thunder/issues/1160

    then i'll be done with sync myself, I highly recommend thunder if you like sync

  • Trump floats ‘migrant league of fighters’ in latest dehumanizing rhetoric against migrants
  • I desperately want to know what he thinks his worst idea is

  • Why in 2024 do people still believe in religion? (serious)
  • Yes, belief without evidence is peak narcissism in my eyes

    it is the definition of delusion

  • Why in 2024 do people still believe in religion? (serious)
  • Yes, they shouldn't because they have no evidence and are therefore arrogantly asserting something they have no reason to believe

  • Why in 2024 do people still believe in religion? (serious)
  • Reread what he said, you're the one without anything to offer... it's honestly embarrasingly arrogant

  • Why in 2024 do people still believe in religion? (serious)
  • I never denied the possibility, I denied we should believe in those things

    it sounds incredibly arrogant to me to assume you know something without evidence

  • Why in 2024 do people still believe in religion? (serious)
  • No neither do astrophysicists, they think it might be true with healthy skepticism

    or they have proven it true with observation, neither of which applies to religion

    are you confident you're not the arrogant one?

  • Why in 2024 do people still believe in religion? (serious)
  • be·lief

    noun

    an acceptance that a statement is true or that something exists.

    "his belief in the value of hard work"

    trust, faith, or confidence in someone or something.

    "I've still got belief in myself"

    Which is completely different from a hypothesis, which is that something might be true and we should test it

  • Why in 2024 do people still believe in religion? (serious)
  • be·lief noun

    1. an acceptance that a statement is true or that something exists.

    "his belief in the value of hard work"

    \2. trust, faith, or confidence in someone or something.

    "I've still got belief in myself"

    I don't believe in anything without evidence and if I do I seek to correct that

    belief without evidence is a failure of the mind

  • Why in 2024 do people still believe in religion? (serious)
  • i don't assume the vast majority of astrophysics is true

    neither do astrophysicists

  • Why in 2024 do people still believe in religion? (serious)
  • Evidence exists for astrophysics

  • Why in 2024 do people still believe in religion? (serious)
  • I do not, why would I?

    nobody asserts that, they assert that we don't know, which is accurate it is religion that asserts it happened through magic

  • Why in 2024 do people still believe in religion? (serious)
  • Because science doesn't assert all hypothesis are true

  • Why in 2024 do people still believe in religion? (serious)
  • That just leaves you with the conclusion that "there is no current explanation" not that you can make whatever you want up.

  • Why in 2024 do people still believe in religion? (serious)
  • I do understand that it is something people made up without any evidence.

    I am this arrogant about anything without evidence, if you present evidence, then I have a reason to believe.

  • Why in 2024 do people still believe in religion? (serious)
  • All religion is untested made up nonsense, no exceptions.

    If you make it up without evidence, it can be thrown out without evidence. Athiests make no claims, there's nothing to throw out.

    The real answer to these questions is "we have no idea", everything else falls under russel's teapot.

  • Help with sink switching script

    I use the following oneliner to switch sinks:

    wpctl set-default $(pw-cli i $(pactl list short sinks | awk '{print $2}' | sd 'easyeffects_sink\n' '' | sd "$(pactl get-default-sink)\n" '' | rg '.' || echo "$(pactl get-default-sink)" | tofi --prompt-text " " --height 40% --width 40% --auto-accept-single true ) | rg -oP 'id: \K\w+') && notify-send --urgency=low --icon=/usr/share/icons/Flat-Remix-Red-Dark/panel/audio-volume-high-symbolic.svg "$(pactl list sinks | rg -A 1 "Name: $(pactl get-default-sink)" | rg Description: | sd ' Description: ' '')" -h string:x-canonical-private-synchronous:sink-state && pw-play --volume=0.2 /usr/share/sounds/freedesktop/stereo/audio-volume-change.oga &!

    This is great, however, i'd like it if the sink menu showed the descriptions for selection instead of the actual sink names

    I've started a script like the following:

    RET=$(pactl list sinks | rg Description: | sd ' Description: ' '') | tofi case $RET in pactl list sinks | rg Description: | sd ' Description: ' '') pactl list short sinks | awk '{print $2}' esac

    but that doesn't seem to work at all, any ideas for how to get this working?

    edit: I found a better solution

    $sinkswitch = wpctl set-default $(pw-cli i $(pactl list sinks | rg --fixed-strings -B 1 "$(pactl list sinks | rg Description: | sd ' Description: ' '' | sd 'Easy Effects Sink' '' | sd --fixed-strings "$(pactl list sinks | rg -A 1 "Name: $(pactl get-default-sink)" | rg Description: | sd ' Description: ' '')" '' | rg '.' || echo "$(pactl list sinks | rg -A 1 "Name: $(pactl get-default-sink)" | rg Description: | sd ' Description: ' '')" | tofi --prompt-text " " --height 40% --width 40% --auto-accept-single true )" | rg Name: | awk '{print $2}' ) | rg -oP 'id: \K\w+') && notify-send --urgency=low --icon=/usr/share/icons/Flat-Remix-Red-Dark/panel/audio-volume-high-symbolic.svg "$(pactl list sinks | rg -A 1 "Name: $(pactl get-default-sink)" | rg Description: | sd ' Description: ' '')" -h string:x-canonical-private-synchronous:sink-state && pw-play --volume=0.2 /usr/share/sounds/freedesktop/stereo/audio-volume-change.oga &!

    2
    Help ridding my system of pactl and replacing it with pw-cli and wpctl

    I currently use the following one-liner to switch between sinks

    pactl set-default-sink $(pactl list short sinks | awk '{print $2}' | sd 'easyeffects_sink\n' '' | sd "$(pactl get-default-sink)\n" '' | tofi --prompt-text " " --height 40% --width 40% --auto-accept-single true ) && pw-play --volume=0.2 /usr/share/sounds/freedesktop/stereo/audio-volume-change.oga

    It seems wpctl doesn't currently support node.names which makes this significantly more complex, has anyone done something similar with wpctl? I've found a massive script but I want something more simple that's a one-liner.

    wpctl set-default $(pw-cli i $(pactl list short sinks | awk '{print $2}' | sd 'easyeffects_sink\n' '' | sd "$(pactl get-default-sink)\n" '' | tofi --prompt-text " " --height 40% --width 40% --auto-accept-single true ) | rg -oP 'id: \K\w+')

    closest I've managed so far is this, which at least makes it so that wpctl sets the sink, which is an upgrade, I guess, but there's still two pactl's to eliminate...

    2
    My most ridiculous solution yet, completely solving citrix clipboard issues

    bindntr=CTRL,C,exec,hyprctl dispatch closewindow alacrittyclipboard & hyprctl activewindow | rg -q "class: Wfica" && alacritty -qq --config-file ~/.config/alacritty/alacrittyclipboard.toml --class 'alacrittyclipboard' --title 'Office365 Desktop - Nexus (SSL/TLS Secured, 256 bit)' -e sh -c 'sleep .03 && xclip -o | wl-copy' windowrulev2 = float,class:(alacrittyclipboard) windowrulev2 = stayfocused,class:(alacrittyclipboard) windowrulev2 = noborder,class:(alacrittyclipboard) windowrulev2 = noanim,class:(alacrittyclipboard) windowrulev2 = noblur,class:(alacrittyclipboard) windowrulev2 = opacity 0,class:(alacrittyclipboard) windowrulev2 = maxsize 1 1,class:(alacrittyclipboard)

    i've done it, I've finally figured out a workaround for this stupid bug that has existed on my system for the last 10 years. the citrix clipboard now works properly, this is the glueyest dumbest thing i've ever had to do and i've spent literally years trying to figure it out, turns out the wayland protocol forbids windows that don't have focus from accessing the clipboard, so, i had to make a window, it had to be focused for enough time for it to be recognized and it was a whole thing. Here you go for anybody that needs it, should be relatively easy to adapt from hyprland over to whatever. Fuck.

    7
    I'm the new mod here... Apparently

    I have no idea why, I've made a single comment here one time and never asked for this, but I promise to be a benevolent dictator

    4
    Does anyone know how to execute a script when a certain sound plays?

    I have a dumb work related chrome thing, i'd like to make it so that when a certain notification sound plays in chromium, my computer does a few things automatically for me

    Does anyone know a good way to make this happen?

    I imagine it'd have to be setup like:

    when chrome starts playing audio && check if that audio matches soundfile.ogg && myscript.sh, but I don't know any good cli utilities that could get something like that done, and if there are any better ideas!

    edit: to avoid X/Y issues i've summarized the problem in full here:

    1. I have a work program, this notifies me if I get a call or email, the work program then presents an accept/decline page, and does not proceed until I either accept, decline, or it times out.
    2. I want it to do two different things depending on if it's a call or email
    3. It provides no notification other than the sound and an "accept" button on the page
    4. I have a chrome window open that does nothing but this, and I never use chrome for anything else
    5. I want to automatically do various things when I receive either this call or email
    6. I want it to be broadly applicable rather than a script designed for the specific website giving me the notification (so not a chrome extension). This prevents me from having to update any code in the event that the backend changes dramatically, and even if the notification sound changes, i'd just record a new sound as the activation noise.
    7. The noise is always the same, and hasn't changed for many years, and there is a distinct noise between calls and emails
    8. They never overlap, they never play multiple times at the same time, and they never make any noises other than those two. The noises are distinct.

    These factors cause me to want to run a script once the noise is recognized, only if the noise is playing in a particular app. I'm using pipewire/hyprland on arch.

    My current plan for isolating the noise is to do the following:

    pactl load-module module-combine-sink sink_name='Work' slaves='easyeffects_sink'

    and then set chrome exclusively to play audio on work.

    Then set a script to check the sink work for audio that matches what I want. That should be simpler than the other methods i've seen to isolate the noise.

    67
    I'm facing segfaults with waybar and have come up with a ridiculous solution, is there a better way of doing this?

    in my config file exists...

    exec-once = zsh -c 'sleep 1' && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar && waybar

    Why? Because waybar crashes sometimes when I turn my monitor off/on, I documented this here: https://github.com/Alexays/Waybar/issues/3047

    ...this opens waybar if it crashes... and if that crashes, it opens another waybar, and you'll notice, if that one crashes, it opens another one... now you may have seen the pattern here but in case you didn't, that one will then lead to another waybar...

    Is there a less ridiculous way of making waybar open every time when waybar crashes, giving me better fault tolerance?

    18
    Help with a python script to control my lights?
    github.com [Example request] The most basic way to turn an individual, specific light on and off · Issue #185 · mclarkk/lifxlan

    I've been struggling with this for hours, i'm not a python dev, i'm just trying to control my lights with my linux pc #!/usr/bin/env python import sys from lifxlan import LifxLAN def main (): lan =...

    [Example request] The most basic way to turn an individual, specific light on and off · Issue #185 · mclarkk/lifxlan

    cross-posted from: https://lemmy.ml/post/13397153

    > I'm just trying to control my smartlights with a script, it seems to be having a lot of problems, I really don't know what I'm doing, i'd appreciate any help I can get > > Once I have a script that can individually turn lights on/off i can edit the rest myself, I just can't get the base functionality working.

    3
    Python @lemmy.ml Communist @lemmy.ml
    Help with a python script to control my lights?
    github.com [Example request] The most basic way to turn an individual, specific light on and off · Issue #185 · mclarkk/lifxlan

    I've been struggling with this for hours, i'm not a python dev, i'm just trying to control my lights with my linux pc #!/usr/bin/env python import sys from lifxlan import LifxLAN def main (): lan =...

    [Example request] The most basic way to turn an individual, specific light on and off · Issue #185 · mclarkk/lifxlan

    I'm just trying to control my smartlights with a script, it seems to be having a lot of problems, I really don't know what I'm doing, i'd appreciate any help I can get

    Once I have a script that can individually turn lights on/off i can edit the rest myself, I just can't get the base functionality working.

    6
    How to make a bindsym on sway only work if a window is xwayland

    I'm trying to improve the clipboard sync situation, i've realized that if I can make it so that a bindsym only applies when an xwayland window is in focus, I can basically do

    bindsym --release Control+c exec "xclip -o | wl-copy"

    And it'll automatically sync the clipboard... however, I can't find a way to make the bindsym only run on xwayland windows, as, if this runs on a wayland window, it'll just overwrite the wayland clipboard with the last xwayland clipboard.

    I've discovered you can match all xwayland windows with "swaymsg [shell='xwayland']" but I can't figure out how to make a bindsym only work if that is in focus

    edit: I figured out the following:

    bindsym --release Control+c exec swaymsg -t get_tree | jq '.. | select(.type?) | select(.focused==true) | .shell' | grep -Eq 'xwayland' && xclip -o | wl-copy

    ^^ that SHOULD WORK in theory, but it doesn't, because xclip outputs what it remembers as soon as the command starts, and as a result, the string gets messed up... I cannot figure out for the life of me why running "xclip -o | wl-copy" fixes it but not that. please help.

    bindsym --release Control+c exec swaymsg -t get_tree | jq '.. | select(.type?) | select(.focused==true) | .shell' | grep -Eq 'xwayland' && [xclip -o | wl-copy]

    ^^does not fix it, unfortunately

    here's an issue tracker: https://github.com/swaywm/sway/issues/7958

    6
    Help with dbus after archlinux upgrade

    I noticed on startup my computer is saying "Failed to start D-bus system message bus"

    my sway session would not start

    I switched to dbus-deamon-units and now sway will start with seatd, but i can't, for example, use notify-send as it says

    Error spawning command line “dbus-launch --autolaunch=82fe279a661a4ecdb58cb22596899103 --binary-syntax --close-stderr”: Child process exited with code 1

    I suspect I may have setup dbus to run as root with systemctl or something? but I have no idea what's going on and have been at this for hours, any advice would be helpful

    Also, it takes two attempts to run commands, zsh is saying

    zsh: corrupt history file

    edit: I discovered pacman was lying to me about dbus-daemon-units being installed, and dbus-broker is now running fine at a user level and dbus at the system level, but if I setup dbus broker as root everything breaks, I dunno

    3
    could we mirror reddit?

    What's stopping us from using the api to post all of reddit here in a massive one-time merger?

    Obviously the Lemmy devs would have to do it, but would there be legal issues? I think it would solve most of the problems with Lemmy, really.

    22
    Communist Communist @lemmy.ml

    I'm an anarchocommunist, all states are evil.

    Your local herpetology guy.

    Feel free to AMA about picking a pet/reptiles in general, I have a lot of recommendations for that!

    Posts 11
    Comments 403
    Moderates