#!/bin/bash
# ~/.xinitrc - Automatically start IceWM and Remmina

# Set keyboard layout if needed
setxkbmap us

# Set reasonable defaults for IceWM
export ICEWM_PRIVCFG=$HOME/.icewm

# Start IceWM
icewm &
ICEWM_PID=$!

# Start Remmina (maximized)
remmina &
REMMINA_PID=$!

# Wait for IceWM
wait $ICEWM_PID
