Bohdan's terminal configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

switched default layout to English altgr-intl, updated scripts

bpavuk 554d4ff4 3bd1d4df

+4 -4
+1 -1
window_manager/.config/hypr/hyprland/input.conf
··· 1 1 # https://wiki.hyprland.org/Configuring/Variables/#input 2 2 input { 3 3 kb_layout = us,ua,ru 4 - kb_variant = 4 + kb_variant = altgr-intl, 5 5 kb_options = grp:win_space_toggle,caps:swapescape 6 6 7 7 follow_mouse = 1
+3 -3
window_manager/.config/hypr/scripts/lock/language.sh
··· 1 1 layout=$(hyprctl devices -j | jq -r '.keyboards[] | select(.main == true) | .active_keymap') 2 2 3 3 if [[ -n "$layout" ]]; then 4 - if [[ "$layout" == "English (US)" ]]; then 4 + if [[ $layout == English* ]]; then 5 5 echo "EN" 6 - elif [[ "$layout" == "Russian" ]]; then 6 + elif [[ $layout == Russian* ]]; then 7 7 echo "RU" 8 - elif [[ "$layout" == "Ukrainian" ]]; then 8 + elif [[ $layout == Ukrainian* ]]; then 9 9 echo "UA" 10 10 fi 11 11 fi