rofi-light: rofi-based pop up for changing backlight brightness
[~bandali/configs] / sxhkd / .local / bin / toggle-layout
... / ...
CommitLineData
1#!/bin/bash
2
3lang="$(setxkbmap -print | grep xkb_symbols | cut -d'+' -f 2)"
4
5if [ "$lang" = "us" ]; then
6 setxkbmap ir
7else
8 setxkbmap us
9 #xmodmap $HOME/.Xmodmap
10fi