mirror of
https://git.myvelabs.com/novnc/alpine.git
synced 2025-12-17 22:56:21 +00:00
20 lines
481 B
Bash
Executable file
20 lines
481 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Remmina config
|
|
cat >~/.config/i3/config.d/remmina.conf <<- 'remmina.conf'
|
|
# Open terminal
|
|
exec --no-startup-id i3-msg 'workspace "2"; exec ${TERMINAL}'
|
|
|
|
# Maximize
|
|
for_window [class="remmina"] move container to workspace "1"
|
|
for_window [class="${TERMINAL}"] move container to workspace "2"
|
|
remmina.conf
|
|
|
|
# Remmina startup
|
|
install /dev/stdin ~/.config/i3/startapp.sh <<- startapp.sh
|
|
#!/usr/bin/env bash
|
|
# Run remmina
|
|
while true
|
|
do
|
|
remmina
|
|
done
|
|
startapp.sh
|