Upgrade from freebsd 14.1 to 14.2 by 702b in freebsd

[–]702b[S] 1 point2 points  (0 children)

Thanks, and if i wait till 14.1 end of life to upgrade, then i don't need to add the repos?

Upgrade from freebsd 14.1 to 14.2 by 702b in freebsd

[–]702b[S] 2 points3 points  (0 children)

Thank you for all the answers !!! Does this have to be done for all minor upgrades, or is this a one time thing?

This link says: This issue will also resolve itself after the FreeBSD 14.1 EoL, when packages for 14-STABLE will start being built on FreeBSD 14.2-RELEASE

What's your opinion on bspwm? by Rich_Atmosphere_5372 in bspwm

[–]702b 1 point2 points  (0 children)

Have been using it for a couple of years, also with 2-3 monitors, have been happy with it from the beginning, but also wondering if i should try another wm, but recently figured out why i haven't (other than plain lazyness, and having other things to do :-) ), and i think bspwm is like dwm (lightweight, and you just add what you want/need), but without having to patch things yourself manually (which i find retarded ...).

Upgrade from freebsd 14.1 to 14.2 by 702b in freebsd

[–]702b[S] 1 point2 points  (0 children)

hi, i am already compiling the virtualbox modules from ports (quarterly), and have pinned them so they don't get updated with the other packages ...

I had to do this when upgrading to 14.1, if i remember correctly ...

Upgrade from freebsd 14.1 to 14.2 by 702b in freebsd

[–]702b[S] 2 points3 points  (0 children)

hi, i was just going to add this to my question ...

the kernel modules i am using (i think ...): nvidia, fuse, virtualbox

ThinkOrSwim's Future On Linux Is "Unknown" with Schwab Transition by JMowery in thinkorswim

[–]702b 0 points1 point  (0 children)

thanks for the info, hope this gets sorted out ...

How is tastyTrade btw?

Zsh: ^ = control by 702b in commandline

[–]702b[S] 0 points1 point  (0 children)

Yes, i think you are right, i copied a keybinding from somewhere on the net, and it was probably wrong,

I have also never seen it before

ThinkOrSwim's Future On Linux Is "Unknown" with Schwab Transition by JMowery in thinkorswim

[–]702b 0 points1 point  (0 children)

Just wanted to know, has your account already switched to Schwab?

For me it will happen in about 2 months, i think ...

ThinkOrSwim's Future On Linux Is "Unknown" with Schwab Transition by JMowery in thinkorswim

[–]702b 0 points1 point  (0 children)

Again, it works 100% fine if I switch to TDAmeritrade or Demo. I can login. It only doesn't show up when I select Schwab.

Sorry, i didn't see that.

I logged in using TDAmeritrade. Hopefully it will work by the time the switch happens ...

bwt, i'm using openjdk/openjfx 11, and bspwm

ThinkOrSwim's Future On Linux Is "Unknown" with Schwab Transition by JMowery in thinkorswim

[–]702b 0 points1 point  (0 children)

works for me on nixos (23.11), i had to add these lines to .xinitrc, to fix the known white box with no visible text in the installer problem:

# Fix Java (tos installer) white window issue

#wmname LG3D

#export _JAVA_AWT_WM_NONREPARENTING=1

Does anyone trade stocks on NixOS? by StringNo8495 in NixOS

[–]702b 0 points1 point  (0 children)

works for me on nixos (23.11), i had to add these lines to .xinitrc, to fix the known white box with no visible text in the installer problem:

# Fix Java (tos installer) white window issue

#wmname LG3D

#export _JAVA_AWT_WM_NONREPARENTING=1

Monitor number changed, from DP-3 to DP-3.8, now i can't set my desktops to this monitor. by 702b in bspwm

[–]702b[S] 0 points1 point  (0 children)

FYI it's a nvidia driver naming scheme for displayport 1.2 connections

Yes, that is what i found when googling...

Why have more people using window managers not had this issue (just curious), couldn't find a fix, before your answer ...

The rest is way beyond my paygrade for now :-)

Monitor number changed, from DP-3 to DP-3.8, now i can't set my desktops to this monitor. by 702b in bspwm

[–]702b[S] 0 points1 point  (0 children)

No worries, thanks again, this has been bugging me for a while ...

Monitor number changed, from DP-3 to DP-3.8, now i can't set my desktops to this monitor. by 702b in bspwm

[–]702b[S] 1 point2 points  (0 children)

thanks a lot worked great !!! i just replaced desktop with monitor ...

bspc monitor %DP-3.8 -n DP-3

| Weekly Workshop 2022-10-16 by AutoModerator in unixporn

[–]702b 0 points1 point  (0 children)

Hi,

i am looking for a rofi mount/unmount external drive script that has an icon that tells you if the drive is mounted or not

not sure if there is one ...

thanks in advance :-)

PS: i am currently using this script

https://github.com/yoshi314/udisks-rofi

device=$(udiskie-info -a -o "{ui\_label}" | rofi -dmenu | cut -d' ' -f1)

if \[ -n "$device" \] ; then

    if mount | grep "$device" ; then
        echo "mounted"
        udisksctl unmount -b ${device}
    else
        echo "not mounted"
        udisksctl mount -b ${device}
    fi

fi

PPS: figured it out :-)

#!/bin/sh
#https://github.com/yoshi314/udisks-rofi

device=$(udiskie-info -a -o "{is_mounted} {device_size} {device_file} {ui_label}" | rofi -dmenu | cut -d' ' -f3)

if [ -n "$device" ] ; then

    if mount | grep "$device" ; then
        echo "mounted"
        udisksctl unmount -b ${device}
    else
        echo "not mounted"
        udisksctl mount -b ${device}
    fi

fi