Last active 1737677627

My current setup, see the ›Pat Winlink‹ gist for enhanced i3config (including terminals for alsamixer and rigctld)

config.i3config Raw
1# some default settings
2set $ws0 " 0:Winlink "
3bindsym $mod+0 workspace $ws0
4bindsym $mod+Ctrl+0 move container to workspace $ws0
5bindsym $mod+Shift+0 move container to workspace $ws0; workspace $ws0
6
7# Winlink
8for_window [class="rms express.exe"] floating enable, border normal
9for_window [class="notepad.exe"] floating enable, border normal
10for_window [title="Winlink Session"] floating enable, border normal, resize set 900 500, move absolute position 1120 30
11for_window [title="^ Winlink Express"] floating enable, border normal, resize set 1100 700, move absolute position 0 30
12# Soundmodem
13for_window [class="soundmodem.exe"] floating enable, border normal, resize set 900 550, move absolute position 1120 530
14# ARDOP_Win is usually 540x143 (positon x: 1380)
15for_window [class="ardop_win.exe"] floating enable, border normal
16for_window [title="^ARDOP_Win"] floating enable, border normal, move absolute position 1120 540
17#VARA HF is usually 732x240 (depends on settings, waterfall, diagrams....)
18for_window [class="vara.exe"] floating enable, border normal, move position center
19for_window [class="varafm.exe"] floating enable, border normal, move position center
20for_window [title="^VARA (HF|FM)"] move absolute position 1120 540
21# VARA FM is usually 732x147 (also depends on settings)
22# for_window [title="^VARA FM"] move absolute position 1120 540
23for_window [title="^VARA(FM|HF).log"] floating enable, border normal, move position center
winlink-express.sh Raw
#!/usr/bin/sh
# Start Winlink Express via Wine
# lastmod: 2025-01-24T01:13:25+0100
#
# Author: Dominic Reich <quick.hat4396@qtztsjosmprqmgtunjyf.com>
# Check if we are on the "Winlink screen"
workspaces=$(i3-msg -t get_workspaces)
if [[ "${workspaces}" == *" 0:Winlink "* ]]; then
i3-msg 'exec WINEPREFIX=/home/dominic/.wine-winlink wine "C:\\RMS Express\\RMS Express.exe"'
else
i3-msg 'workspace " 0:Winlink "; exec WINEPREFIX=/home/dominic/.wine-winlink wine "C:\\RMS Express\\RMS Express.exe"'
fi
# reset the ports to COM1 because the Pat version changes them to COM33
# and we don't want Winlink to cry about wrong ports
sed -i '/^PTTPort=/s/=.*$/=COM1/' ~/.wine-winlink/drive_c/VARA\ FM/VARAFM.ini
sed -i '/^PTTPort=/s/=.*$/=COM1/' ~/.wine-winlink/drive_c/VARA/VARA.ini