Skip Navigation
[Solved] How can I unmod myself?
  • This worked, Thanks!

  • [Solved] How can I unmod myself?

    I'd like to unmod myself from !geometrydash@lemmy.world, but I don't see any button to do it, and by quick research the actions suggested do not appear for me.

    I don't see an option via a comment of mine: !

    And neither over the sidebar:

    !

    2
    Looking for Moderator

    Hey there, I am looking for someone to take over this community and moderate it. If you're interested, just write a comment here, and soon I will transfer ownership.

    Edit: Mods have been chosen

    0
    (Tutorial) How to make high refresh rates work in Xorg
  • Only difference in info I can see is that display name ends with :0 instead of :0.0. Depending on your DE, you might fiddle with display settings there. Are you running X natively and not XWayland?

  • [SOLVED] Randomly stuck at "Reboot: Power Down"
  • Already used these drivers on previous installation, was 525 iirc (Linux Mint), but also went from 530 to 535 on Arch and it persisted. Thing is problem started the exact day I also flashed BIOS firmware so it's likely that it could come from there, but trying lts kernel now

  • [SOLVED] Randomly stuck at "Reboot: Power Down"

    Update 02/2024

    The Problem has been solved by disabling TPM in UEFI Setup. TPM seems to be bugged with some CPUs. Before updating the BIOS, TPM was probably disabled by vendor, hence it didn't appear initially.

    If you experience freezes right before poweroff, try disabling TPM in UEFI/BIOS settings if it isn't in use.

    Symptoms

    • Complete Freeze after: preparing to enter ACPI S5 state Reboot: Power Down
    • seemlingly random (can successfully shutdown maybe 10 times in a row, then suddenly freezes again)
    • seems to happen more often as uptime grows
    • Case Fans still spin, LEDs and Lights stay on
    • Monitors stay on, still react to HDMI/DP Hotplugging (unplug/plug)
    • REISUB/REISUO doesn't work
    • Disks are already powered off and disconnected
    • USB devices (eg. keyboard unresponsive)

    Since When

    • After switching to Arch and flashing BIOS Firmware 7C88v18 to MSI B460M-A Pro Board
    • Arch Linux is ruled out by me since it's very unlikely Userland plays a role, and already used Linux before without the problem
    • Gone from linux ~6.2.10 to 6.4.8, Kernel bug unlikely

    Attempted:

    • Reflash 7C88v18 from a FAT32 formatted partition (USB)
    • Add reboot=pci or reboot=acpi acpi=force to kernel cmdline
    • run fwupd
    • Stop X and wait a bit for processes to clear up (???)
    • intel-ucode is installed: ~> pacman -Qi intel-ucode | head -2 Name : intel-ucode Version : 20230613-1
    • Other threads on the Internet seem to have easier reproducibility (always happening), solutions were about either kernel cmdline or outdated kernel (If I didn't see a thread with my exact problem, apologies)

    Hardware Info

    ~> pacman -Qi nvidia | head -2 Name : nvidia Version : 535.86.05-8

    ~> cat /sys/class/dmi/id/board_* 2>/dev/null Default string B460M-A PRO (MS-7C88) Micro-Star International Co., Ltd. 1.0

    ~> LC_ALL=C lscpu | grep -i 'model name' Model name: Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz

    ~> sudo journalctl -k --grep=microcode [...] kernel: microcode: updated early: 0xf0 -> 0xf6, date = 2022-12-26 [...] kernel: SRBDS: Mitigation: Microcode [...] kernel: microcode: Microcode Update Driver: v2.2.

    Misc

    • Did I just miss something obvious?
    • I don't want to go back to an outdated BIOS firmware
    • lscpu, nvidia-smi and other info added if needed
    • I have another device (ASUS Board, similar CPU) with similar arch linux setup (nouveau instead of propietary nvidia there), no problems on that device
    4
    (Tutorial) How to make high refresh rates work in Xorg

    This concerns a multi monitor setup with different refresh rates (e. g. 1 with 60hz and 1 with 144hz).

    The text below is part of the linked article. If you have both nvidia and picom installed, check both sections.

    NVIDIA (propietary)

    • Open nvidia-settings
    • Go to 'X Server Display Configuration'
    • In the bottom right, Click on 'Advanced...' if it says 'Advanced...'
    • Make sure anything regarding 'force composition pipeline' is checked off
    • Make sure you selected the highest refresh rates possible. You can either select it through the settings, configure it with xrandr or with your DEs Display Settings, is applicable

    picom

    • Make sure to start picom with --no-vsync

    Misc

    If it still doesn't work, try settings these environment variables:

    CLUTTER_DEFAULT_FPS=<your highest refresh rate> __GL_SYNC_DISPLAY_DEVICE=<your highest refresh rate display> __GL_SYNC_TO_VBLANK=0

    Find the DISPLAY_DEVICE name with xrandr | grep connected

    Add the text block above to /etc/environment (Tip: Use EDITOR=<your editor, if EDITOR is not set anywhere else> sudoedit instead of sudo nano or sudo vim)

    -> sudoedit /etc/environment

    5
    I wrote a Guide on how to install Arch Linux with BTRFS and (almost) Full Disk encrytion
  • It was from a GitHub Gist but idk which exactly it was, there are multiple. Keep in mind some files need to have copy-on-write deactivated (swapfile, VirtualBox disk images). The Arch Wiki mentions when copy-on-write should be turned off for a file

  • I wrote a Guide on how to install Arch Linux with BTRFS and (almost) Full Disk encrytion
  • What do you mean with "birds part"? Learned from YouTube Videos, Arch Wiki, and experimenting on bare metal and in Virtualbox. Hardest part for me when installing Arch 1st time was partitioning and bootloaders

  • I wrote a Guide on how to install Arch Linux with BTRFS and (almost) Full Disk encrytion
  • You might install an older kernel version from /var/cache/pacman/pkg and then regenerate the initramfs. If not using NVIDIA, it's very easy to have multiple kernels installed (e. g. linux, linux-lts) to have another option if one kernel causes trouble.

    I'd generally recommend having the lts or mainline kernel additionally if you use custom kernels, like zen or self compiled

  • I wrote a Guide on how to install Arch Linux with BTRFS and (almost) Full Disk encrytion
  • In the Gentoo wiki it is also mentioned that "While it is true that Btrfs is still considered experimental and is growing in stability, the time when Btrfs will become the default filesystem for Linux systems is getting closer.". I don't know how many distros out there use Btrfs by default (never distrohopped), but it seems to become much more widely adopted than zfs.

    https://wiki.gentoo.org/wiki/Btrfs#Features

  • I wrote a Guide on how to install Arch Linux with BTRFS and (almost) Full Disk encrytion
  • I wrote this more or less for fun; it is slightly more extensive than the installation guide geared for a more advanced setup. The wiki is mentioned in the article as well and is encouraged to be used too

  • I wrote a Guide on how to install Arch Linux with BTRFS and (almost) Full Disk encrytion
  • The Bootloader itself cannot be encrypted afaik, but the Kernel and initrd can reside on a LUKS Volume (GRUB_USE_CRYPTODISK). But, in order to prevent having to input your passphrase twice, you need to use a keyfile, and I have no experience with that, so I have gone another route. I don't think that a kernel and initrd necessarily need to be encrypted

  • I wrote a Guide on how to install Arch Linux with BTRFS and (almost) Full Disk encrytion

    This covers obtaining the ISO, connecting to Wi-Fi, partitioning, formatting, mounting, installing, setting up encryption and installing GRUB, in one article. Also includes some tips, like quickly mounting from install medium. Maybe this helps someone.

    19
    [News] Tiny tiny 2.2 preview

    Rob posted 3 small clips, this is one of them (the other are very similar): https://cdn.discordapp.com/attachments/398627612299362306/1127356813692637284/radio3.mov

    ---

    Link Controls might be enabled by default in 2.2:

    !

    0
    Problem with new GRUB version? (grub-2:2.06.r591.g6425c12cd-1-x86_64)

    When installing the GRUB version above, I got symbol grub_is_shim_lock_enabled not found and can't boot, so I downgraded back to grub-2:2.06.r566.g857af0e17-1-x86_64. I tried --disable-shim-lock but it didn't help. I don't secure boot and don't use TPM.

    Package was pushed just 5 hours ago, anyone by chance ran into the same problem?

    EDIT: Tried again today, worked. Problem was likely caused because I installed GRUB into the "arch" NVRAM entry (esp/EFI/arch) instead of the Fallback which my board only supports (esp/EFI/BOOT). To do this add --removable to grub-install. The full procedure is:

    ```

    grub-install --removable /dev/sdX ## or /dev/nvme0nX

    grub-mkconfig -o /boot/grub/grub.cfg

    ```

    0
    (Controversial) Should lemmy.world close registrations at a certain user count?
  • Maybe Guides / Information could be shown on the lemmy web frontend by default to lower the entry barrier?

  • (Controversial) Should lemmy.world close registrations at a certain user count?

    To support decentralization and spread, should lemmy.world close registration at some point to prevent a performance overload due to too many users? Of course, if registration is disabled, there could be a hint placed somewhere near that from other instances you can interact with content on lemmy.world just like you had registered on it. There could be a link to join-lemmys instance overview.

    71
    Its been one day without Reddit
  • Element is a client for Matrix, a decentralized chat protocol featuring end-to-end-encryption. Lemmy seems to support DMs over the Matrix Chat protocol. Matrix is federated, so user1@matrix.org can talk to user2@matrixinstance.space.

    Some fediverse apps can work together seamlessly, some can't, and support seems to be growing over time. E. g. Mastodon users can comment on PeerTube, but Lemmy users can't (not that I know of), but it's not impossible that will change in the future. But, kbin for example integrates seamlessly into Lemmy.

  • Its been one day without Reddit
  • Lemmy also has an API that clients can get information/content from. The Web frontend (lemmy.world) is one of them. Apps like wefwef and Jerboa also ask the Lemmy API for content and display it in their own way.

  • Lemmy.world grew by about 40% on the first day of reddit migration
  • You can also try installing the PWA (if your browser supports it). On https://sh.itjust.works, Somewhere on the browsers web page options, there should be something along "Install" or "Add to home screen". PWA is basically the website but without browser controls, so it feels more native.

  • Lemmy.world grew by about 40% on the first day of reddit migration
  • Good to see Lemmy grow, but I hope that the decentralization will work out so that the large influx of new users will spread out as evenly as possible. General purpose instances help balancing the load, and last time I checked join-lemmy.org there have been several general purpose instances, which seems promising.

  • What happens if the AT Protocol will get large adoption? Will it be a good or a bad thing? Will it lead to more fragmentation? Will it be compatible with ActivityPub?

    I stumbled upon this, but I don't know how it would affect the fediverse. The integrated account migration / moving sounds interesting, but on the other hand, it seems to belong to a company rather than a standardization comitee (W3C ActivityPub). I think it should be prevented that there will be a ActivityPub and AT fediverse that are completely isolated from each other (fragmentation)

    2
    Most inconsistent jump in all Main Levels imo :D

    Often feels like my click is ignored, I can't get the timing right

    0
    Since when can you input 7 digit song IDs? (2.1, Steam)

    I can input 7 digit song IDs in the Steam build of 2.1. Since when is this possible? Was there a secret patch or was it always there? It doesn't work on the Android version, though. It was said that it's fixed in 2.2, but it already seems so partly.

    0
    Fix Steam Window not spawning (nvidia)

    Since nvidia 535.x and new Steam GUI windows might not spawn and you have trouble using it. Here are ways to solve this:

    $ steam -vgui launches Steam with partly old UI. Should work, but can't use friends network and if opening game properties webview will crash and reset.

    $ steam --reset redownloads the steam runtime. Need to relogin. At least some Preferences are lost (compatibility / Proton for games, Settings like GPU acceleration). The new UI might launch though, at least until you restart your PC or restart steam. (https://wiki.archlinux.org/title/Steam/Troubleshooting#Steam_window_does_not_show_on_Nvidia_GPUs_after_the_June_14,_2023_update)

    (Edit: This worked just once)

    $ __GL_THREADED_OPTIMIZATIONS=0 steam There should be almost no downside to this, prob some small performance loss. Source: https://forums.developer.nvidia.com/t/steam-for-linux-client-not-showing-ui-with-535-43-02-245/256178/9

    In this thread this also was mentioned:

    $ steam -no-cef-sandbox but this sounds unsafe. I suggest this only as the very last resort.

    If you found a working solution, you can make an alias, e. g.: alias steam='steam -vgui'

    Alternatively, just install the flatpak. Since the flatpak package brings it's own runtime packages, it just works.

    0
    What 2.2 features do you anticipate the most?

    For me, it's the shader triggers, camera controls, particle systems and all the new pixel art blocks

    0
    [News] We got a little 2.2 news today

    RobTop posted a picture with new Pixel Art, showing new Pixel enemies and weapons.

    You might remember this thing from Sneak Peek 3:

    !

    ---

    Also, this:

    !

    !

    0
    [News] Rob is back with some 2.2 News

    First, he showed an image with new button Textures:

    !

    Then, he posted these 3 short Clips:

    https://cdn.discordapp.com/attachments/398627612299362306/1119246382084132934/turret2.mov

    https://cdn.discordapp.com/attachments/398627612299362306/1119256556857466880/pixedesign1.mov

    https://cdn.discordapp.com/attachments/398627612299362306/1119256785606430770/footsteps.mov

    !

    ---

    And there's more:

    !

    !

    0
    What is your most and least favorite Gamemode?

    For me, I enjoy wave and ship the most, but I can't really get going with spider and cube. With UFO, you can get into situations where you'd need to click 0.5 times, those deaths don't feel great :D When 2.2 will come out, time will tell how Swingcopter will work out. The custom swingcopter parts (e. g. Red World) feel very janky.

    0
    Workaround for the performance issue with posting in large communities
  • I assume that there is something that is O(N), which explains why wait time scales with community size (amount of posts, comments)

  • What is your favorite Main Level?

    Out of Stereo Madness to Fingerdash, what is your favorite Main Level?

    I used to dislike Electrodynamix, but now it's my favorite Main Level. I like the designs and its energetic gameplay.

    0
    Useful Resources

    Here are some Resources regarding Geometry Dash

    ---

    RobTopGames Website: https://robtopgames.com

    Geometry Dash Demon List: https://pointercrate.com/demonlist

    Official Geometry Dash Discord Community: https://discord.gg/geometrydash

    ---

    GDColons Tools:

    GDBrowser: https://gdbrowser.com

    GD Icon Kit: https://gdbrowser.com/iconkit

    GD Comment Generator: https://gdcolon.com/gdcomment

    GD Font Generator: https://gdcolon.com/gdfont

    GD Spritesheet Splitter: https://gdcolon.com/gdsplitter

    ---

    might add more later, if I missed something important or links are wrong you can write it in the comments.

    0
    A Lemmy Community for Geometry Dash
    lemmy.world Geometry Dash - Lemmy.World

    A Lemmy Community for the rhythm-based action platformer “Geometry Dash” developed by RobTop Games AB — Buy Geometry Dash: Steam: https://store.steampowered.com/app/322170/Geometry_Dash/ [https://store.steampowered.com/app/322170/Geometry_Dash/] Android: https://play.google.com/store/apps/details?id...

    Geometry Dash - Lemmy.World

    Geometry Dash is a rythmn-based action platformer developed by RobTop Games AB. This community aims to be an alternative to /r/geometrydash on Reddit.

    Geometry Dash on lemmy.world

    0
    vepro vepro @lemmy.world
    Posts 21
    Comments 15