#!/bin/bash

if grep -q ShowRotationButtons /etc/xdg/plasmamobilerc  ; then
    echo "rotate buttons already enabled"
else
    echo "[QuickSettings]" >> /etc/xdg/plasmamobilerc
    echo "ShowRotationButtons=true" >> /etc/xdg/plasmamobilerc
fi
