I am using the Beamer theme Focus. I'd like to insert a logo in the top-right of every slide (i.e. frame) that contains a frame title (ie. not a plain slide). I have tried a lot of hacks and frustrated at the inflexibility of hand-tuning co-ordinates for placing my image at the desired location. (All that I want is to place the image at the top-right).
For now, we may assume that I'd like to insert a generic cat picture from the www. I'd relly appreciate a solution for this problem.
Here's an MWE for starters
\documentclass{beamer}
\usetheme{focus}
\title{Focus: \\ A Minimalist Beamer Theme}
\subtitle{Subtitle}
\author{Author 1\texorpdfstring{\\}{,} Author 2}
\titlegraphic{\includegraphics[scale=1.25]{focuslogo.pdf}}
\institute{Institute Name \\ Institute Address}
\date{dd mm yyyy}
\begin{document}
\begin{frame}
\maketitle
\end{frame}
% Use starred version (e.g. \section*{Section name})
% to disable (sub)section page.
\section{Section 1}
\subsection{Subsection 1.1}
\begin{frame}{Simple frame}
This is a simple frame.
\end{frame}
\begin{frame}[plain]{Plain frame}
This is a frame with plain style and it is numbered.
\end{frame}
\subsection{Subsection 1.2}
\begin{frame}[t]
This frame has an empty title and is aligned to top.
\end{frame}
\begin{frame}[noframenumbering]{No frame numbering}
This frame is not numbered and is citing reference \cite{knuth74}.
\end{frame}
\begin{frame}{Typesetting and Math}
The packages \texttt{inputenc} and \texttt{FiraSans}\footnote{\url{https://fonts.google.com/specimen/Fira+Sans}}\textsuperscript{,}\footnote{\url{http://mozilla.github.io/Fira/}} are used to properly set the main fonts.
\vfill
This theme provides styling commands to typeset \emph{emphasized}, \alert{alerted}, \textbf{bold}, \textcolor{example}{example text}, \dots
\vfill
\texttt{FiraSans} also provides support for mathematical symbols:
\begin{equation*}
e^{i\pi} + 1 = 0.
\end{equation*}
\end{frame}
\end{document}

latexmkworks (which automatically runs however many times as needed till a non-changing PDF is obtained), I am cool. – Dr Krishnakumar Gopalakrishnan Jul 15 '20 at 22:51