beerclue

@beerclue@lemmy.world

This profile is from a federated server and may be incomplete. Browse more on the original instance.

beerclue,

There’s a lot of detail there… Did you go all the way down? Anyway, that’s messed up!

beerclue,

Why didn’t they just go for “Scouts of America”?

Are there any innovative platforms in the Fediverse?

I’ve explored a few platforms within the Fediverse, but most of them seem to be inspired by and mimic existing mainstream social media platforms like Twitter, Reddit, and Facebook. While this familiarity can be comforting, I can’t help but wonder if there are any truly innovative and original platforms out there that offer a...

beerclue,

Slowly.app? It’s like having a snail mail pen-pal.

beerclue,

Sorry, I thought platforms in general, not specifically in the Fediverse.

beerclue,

“Well, I guess you’re no longer invited to my birthday party.”

Said to a random person, it confuses the hell out of them.

beerclue,

Short answer: we don’t.

Long answer: clean up your shit, or your friend will not come over / your allowance this month will be going to my pocket. Do you want to eat? Help clean out the kitchen/dining table. I did place their plate of dinner food over the one from lunch that they didn’t put away. They didn’t like that.

It also varies a lot from kid to kid in my family. One of them is a crafter and a hoarder. Carton boxes, glue, scissors, pieces of paper, colored beads all over the room. Once in a while I tell her to clean up, and anything she doesn’t, I will scoop up and throw away. Her sister has a spotless room… nothing to complain about. Their brother, every couple of days he will have a new videogame ask, or a new Minecraft server I should set up for him and his friends… Again, I will do so, when I see all the cans, plates of food and clothes on the floor put away.

beerclue,

I don’t understand what this is about, but I admire the commitment, the story, the CGI. 7/10.

beerclue,

Not sure I understand what happened…

beerclue,

Hey, sorry for the late reply.

I remember installing xdg-desktop-portal-hyprland instead of xdg-desktop-portal, and in my hyprland config I have:


<span style="color:#323232;">exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
</span><span style="color:#323232;">exec-once = systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
</span>

I can’t remember everything I tried… I didn’t keep track. I’ve been using this setup for close to 3 years now…

I know that for Ferdium I used the extra params –ozone-platform=wayland --enable-features=UseOzonePlatform, but I think it doesn’t need them anymore (I use it for Teams and other chat apps with screensharing).

For Discord I use Webcord, which works just fine, also with screen sharing, I didn’t have to do anything.

When it comes to key bindings, here’s my working setup:


<span style="color:#323232;"># binds
</span><span style="color:#323232;">$mainMod  = SUPER
</span><span style="color:#323232;">$lock     = playerctl --player=mpd,firefox,mpv -a pause ; ~/.config/hypr/scripts/swaylock
</span><span style="color:#323232;">
</span><span style="color:#323232;">bind = $mainMod,       Q, killactive,
</span><span style="color:#323232;">bind = $mainMod SHIFT, Q, exit,
</span><span style="color:#323232;">bind = $mainMod,       X, exec, $lock # lock
</span><span style="color:#323232;">
</span><span style="color:#323232;">bind = $mainMod,       RETURN, exec, alacritty
</span><span style="color:#323232;">bind = $mainMod SHIFT, RETURN, exec, alacritty -t scratchpad --class scratchpad
</span><span style="color:#323232;">bind = $mainMod,       E,      exec, nemo
</span><span style="color:#323232;">bind = $mainMod,       W,      exec, firefox
</span><span style="color:#323232;">bind = $mainMod,       R,      exec, rofi -show drun --allow-images
</span><span style="color:#323232;">bind = $mainMod SHIFT, E,      exec, wofi-emoji
</span><span style="color:#323232;">bind = $mainMod,       P,      pseudo, # dwindle
</span><span style="color:#323232;">
</span><span style="color:#323232;">bind = $mainMod SHIFT, Space, togglefloating,
</span><span style="color:#323232;">bind = $mainMod,       F,     fullscreen, 1 # maximize window
</span><span style="color:#323232;">bind = $mainMod SHIFT, F,     fullscreen, 0 # fullscreen
</span><span style="color:#323232;">
</span><span style="color:#323232;">bind = $mainMod,       S, exec, grim -g "$(slurp)" - | wl-copy      # screenshot selection to clipboard
</span><span style="color:#323232;">bind = $mainMod SHIFT, S, exec, grim -g "$(slurp)" - | swappy -f -  # screenshot selection and open in swappy
</span><span style="color:#323232;">bind = $mainMod SHIFT, R, exec, wf-recorder -a -g "$(slurp)" -f "${HOME}/$(date +%Y-%m-%d_%H-%m-%s).mkv" -c h264_vaapi -d /dev/dri/renderD128 &>/dev/null           # screenrecord
</span><span style="color:#323232;">
</span><span style="color:#323232;">bind  = ,XF86AudioMute,         exec, pactl set-sink-mute @DEFAULT_SINK@ toggle
</span><span style="color:#323232;">binde = ,XF86AudioLowerVolume,  exec, pactl set-sink-volume @DEFAULT_SINK@ -2%
</span><span style="color:#323232;">binde = ,XF86AudioRaiseVolume,  exec, pactl set-sink-volume @DEFAULT_SINK@ +2%
</span><span style="color:#323232;">bind  = ,XF86AudioMicMute,      exec, pactl set-source-mute @DEFAULT_SOURCE@ toggle
</span><span style="color:#323232;">binde = ,XF86MonBrightnessUp,   exec, light -A 5
</span><span style="color:#323232;">binde = ,XF86MonBrightnessDown, exec, light -U 5
</span><span style="color:#323232;">
</span><span style="color:#323232;"># resize windows
</span><span style="color:#323232;">binde = $mainMod, left,  resizeactive, -40 0
</span><span style="color:#323232;">binde = $mainMod, right, resizeactive, 40 0
</span><span style="color:#323232;">binde = $mainMod, up,    resizeactive, 0 -40
</span><span style="color:#323232;">binde = $mainMod, down,  resizeactive, 0 40
</span><span style="color:#323232;">
</span><span style="color:#323232;"># move focus
</span><span style="color:#323232;">bind = $mainMod, h, movefocus, l
</span><span style="color:#323232;">bind = $mainMod, l, movefocus, r
</span><span style="color:#323232;">bind = $mainMod, k, movefocus, u
</span><span style="color:#323232;">bind = $mainMod, j, movefocus, d
</span><span style="color:#323232;">
</span><span style="color:#323232;"># move windows
</span><span style="color:#323232;">bind = $mainMod SHIFT, h, movewindow, l
</span><span style="color:#323232;">bind = $mainMod SHIFT, l, movewindow, r
</span><span style="color:#323232;">bind = $mainMod SHIFT, k, movewindow, u
</span><span style="color:#323232;">bind = $mainMod SHIFT, j, movewindow, d
</span><span style="color:#323232;">
</span><span style="color:#323232;"># switch workspaces
</span><span style="color:#323232;">bind = $mainMod, 1, workspace,  1
</span><span style="color:#323232;">bind = $mainMod, 2, workspace,  2
</span><span style="color:#323232;">bind = $mainMod, 3, workspace,  3
</span><span style="color:#323232;">bind = $mainMod, 4, workspace,  4
</span><span style="color:#323232;">bind = $mainMod, 5, workspace,  5
</span><span style="color:#323232;">bind = $mainMod, 6, workspace,  6
</span><span style="color:#323232;">bind = $mainMod, 7, workspace,  7
</span><span style="color:#323232;">bind = $mainMod, 8, workspace,  8
</span><span style="color:#323232;">bind = $mainMod, 9, workspace,  9
</span><span style="color:#323232;">bind = $mainMod, 0, workspace, 10
</span><span style="color:#323232;">
</span><span style="color:#323232;"># move windows to workspace without switching (silent)
</span><span style="color:#323232;">bind = $mainMod SHIFT, 1, movetoworkspacesilent,  1
</span><span style="color:#323232;">bind = $mainMod SHIFT, 2, movetoworkspacesilent,  2
</span><span style="color:#323232;">bind = $mainMod SHIFT, 3, movetoworkspacesilent,  3
</span><span style="color:#323232;">bind = $mainMod SHIFT, 4, movetoworkspacesilent,  4
</span><span style="color:#323232;">bind = $mainMod SHIFT, 5, movetoworkspacesilent,  5
</span><span style="color:#323232;">bind = $mainMod SHIFT, 6, movetoworkspacesilent,  6
</span><span style="color:#323232;">bind = $mainMod SHIFT, 7, movetoworkspacesilent,  7
</span><span style="color:#323232;">bind = $mainMod SHIFT, 8, movetoworkspacesilent,  8
</span><span style="color:#323232;">bind = $mainMod SHIFT, 9, movetoworkspacesilent,  9
</span><span style="color:#323232;">bind = $mainMod SHIFT, 0, movetoworkspacesilent, 10
</span><span style="color:#323232;">
</span><span style="color:#323232;"># move/resize windows with LMB/RMB
</span><span style="color:#323232;">bindm = $mainMod, mouse:272, movewindow
</span><span style="color:#323232;">bindm = $mainMod, mouse:273, resizewindow
</span><span style="color:#323232;">
</span><span style="color:#323232;"># scroll through existing workspaces
</span><span style="color:#323232;">bind = $mainMod, mouse_down, workspace, e+1
</span><span style="color:#323232;">bind = $mainMod, mouse_up,   workspace, e-1
</span><span style="color:#323232;">
</span><span style="color:#323232;"># switch workspace with mouse back/fw buttons
</span><span style="color:#323232;">bind = $mainMod, mouse:276, workspace, m+1
</span><span style="color:#323232;">bind = $mainMod, mouse:275, workspace, m-1
</span><span style="color:#323232;">
</span><span style="color:#323232;">bind = $mainMod SHIFT,up,focusmonitor,u
</span><span style="color:#323232;">bind = $mainMod SHIFT,down,focusmonitor,d
</span><span style="color:#323232;">
</span><span style="color:#323232;">binde = $mainMod, TAB, workspace, previous
</span>
beerclue,

I’ve been using Hyprland for about 2 years. I did have some issues with screen sharing (teams, discord) and some steam games (non native, with proton) need some extra launch parameters, but they all work now. Over time I was able to fix all the little issues. For me Hyprland is a daily driver, but I like to tinker. I can see how this is not for everyone.

beerclue,

I mean, Blind mostly (only) plays Dwarf Fortress, which works awesomely on Linux. GG.

beerclue,

Awesome!

beerclue,

Is there a “light” version, without a WM? I run Hyprland on my current Arch setup.

beerclue,

I guess you have a pretty regular sleep schedule… I don’t. I have issues sleeping, so sometimes I would go to bed at 2am and fall asleep at 4am, other days I would go to bed at midnight and fall asleep immediately. I sometimes wake up at 7am when I have to go to the office, sometimes at 9am, right before the morning meeting when I work from home. During the weekend I wake up between 10am and 2pm… I also frequently wake up during the night, I don’t have a very deep sleep. So being in bed for 6 hours might only mean 5h of sleep. I am a zombie when I wake up, so I would most likely forget to write/mark down the times. It’s just not feasible for everyone to do that manually.

To answer OP, I use my Fitbit to track my sleep. Before I got my watch, I used Sleep for Android.

beerclue,

Probably the container does not have the required NFS client/libraries, but you don’t have to do this inside the container… You mount it on the host and share it via a docker volume with the container.

beerclue,

Remember that the container sits on a different network, the docker network, maybe that’s why access doesn’t work.

You can add the mount to be noauto in fstab, so it doesn’t mount it unless you access the location. You can also mount it manually or via script, as needed.

Not sure how to help more, you have a peculiar setup…

beerclue,

No worries, glad to be of help. I still think that you should do this on the host, not the container. Containers revert your manual changes on an update, they sit on a different network, it’s a mess.

Just for reference, this is how I have my NAS mounts on my machine (/etc/fstab):

10.10.10.14:/volume1/backup /home/beerclue/priv/nas/backup nfs noauto,user,rw,vers=4.0 0 0

And on the NAS I have it set like (/etc/exports):

/volume1/backup 10.10.10.17(rw,async,no_wdelay,crossmnt,all_squash,insecure_locks,sec=sys,anonuid=1024,anongid=100)

I’m not saying this is the perfect setup, but it works for me. I see the mount in my file explorer, and it only mounts it when i click on it, or when I tell it to from the terminal, so no boot impact even if I am away.

beerclue,

I mean, I don’t like the guy, but how is he the one responsible? What about the ones that put a smartphone in the tribesmen’s hands?

beerclue,

Is Fennec not available for iOS, or the extension support is the problem? This is what I see, with ublock in Fennec and pihole on my router: ibb.co/wSYnsM0

beerclue,

Will she get taxed for such a low income?

nice roll for a mechanitor starting scenario (lemmy.world)

it’s been a few quadrons for kaleun on the rim. it’s a bit crowded now, 9 people and 8 mechs living in a couple of shacks… but we’ll have to make due for now. she’s a hard worker, sanguine, has a bunch of hobbies with no time to work on, but at least she’s passionate about them :)...

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • mdbf
  • InstantRegret
  • ethstaker
  • magazineikmin
  • GTA5RPClips
  • rosin
  • modclub
  • Youngstown
  • ngwrru68w68
  • slotface
  • osvaldo12
  • kavyap
  • DreamBathrooms
  • Leos
  • thenastyranch
  • everett
  • cubers
  • cisconetworking
  • normalnudes
  • Durango
  • anitta
  • khanakhh
  • tacticalgear
  • tester
  • provamag3
  • megavids
  • lostlight
  • All magazines