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