Japanese Speaker. I can read/write some English but not well, so corrections are always appreciated.

プログラミングや音楽に興味があります。最近はEmacsでよく遊んでます。

  • 0 Posts
  • 41 Comments
Joined 1 year ago
cake
Cake day: June 18th, 2023

help-circle


  • “Pactl load-module” outputs “you have to specify a module name and arguments.”

    As I said in earlier comment, please run "pactl load-module module-switch-on-connect" exactly. Note that Pactl and pactl are different commands and the former is invalid.

    Is the command different for that?

    As the name suggests, pactl is a command for PulseAudio. PipeWire supports application written for PulseAudio, including pactl. Try "man pipewire-pulse" to get further info.







  • It’s not a dead end :) Can you

    1. make sure "systemctl suspend" suspends your machine to check suspend work
    2. Run "gnome-tweaks" and there’s no suspend inhibitor in the “Startup Applications”
    3. post the output of "systemd-inhibit | less" to know who inhibit the suspend
    4. post the output of "gsettings list-recursively | grep -i 'lid\|suspend'"

    (Please remove enclosing double quotes when you try them.)


  • If I’m reading it right, it’s saying it should be working?

    I think so, but I might be overlooking something.

    Apparently # makes a line huge? All the huge lines are preceded by a #

    As macniel said, a line starts with “#” is converted to a heading. To post preformatted lines such as the log or source code, you can use “fenced code block”. For example,

    ```
    foo
    #bar
    baz
    ```
    

    becomes

    foo
    #bar
    baz
    









  • Bash should be fine. On typical Bash installation I think this will work (please try to understand each command line before you actually try):

    $ cp ~/.bashrc ~/.bashrc.bak
    $ cp ~/.bash_history ~/.bash_history.bak
    $ printf 'set +o history' >> ~/.bashrc
    $ printf "sudo apt update\nsudo apt upgrade\n" > .bash_history
    $ (Press Ctrl+D to logout)
    

    For the next bash session you can refer only the two commands from the history with Up/Down/C-p/C-n.