diff --git a/b_asic/GUI/main_window.py b/b_asic/GUI/main_window.py
index 88d7b626a75ee5903c00c6da07a74d62bc2049b0..d0aad22fe4aea807e8c1a2dbb08626bce31ff2f4 100644
--- a/b_asic/GUI/main_window.py
+++ b/b_asic/GUI/main_window.py
@@ -213,9 +213,12 @@ class SFGMainWindow(QMainWindow):
         self._ui.view_menu.addAction(self._zoom_to_fit_action)
 
         # Toggle full screen
-        self._fullscreen_action = QAction(get_icon('full-screen'), "Toggle full screen")
+        self._fullscreen_action = QAction(
+            get_icon('full-screen'), "Toggle f&ull screen"
+        )
         self._fullscreen_action.setCheckable(True)
         self._fullscreen_action.triggered.connect(self._toggle_fullscreen)
+        self._fullscreen_action.setShortcut(QKeySequence("F11"))
         self._ui.view_menu.addAction(self._fullscreen_action)
 
         # Non-modal dialogs
diff --git a/b_asic/scheduler_gui/main_window.ui b/b_asic/scheduler_gui/main_window.ui
index 4cd0225e0c344a1bf80f7d1ec90dbc8057dac8d1..7965f6459f6fe78b7efaed53957ab131fbfba19a 100644
--- a/b_asic/scheduler_gui/main_window.ui
+++ b/b_asic/scheduler_gui/main_window.ui
@@ -519,6 +519,9 @@
    <property name="text">
     <string>Toggle f&amp;ull screen</string>
    </property>
+   <property name="shortcut">
+    <string>F11</string>
+   </property>
   </action>
  </widget>
  <resources/>
diff --git a/b_asic/scheduler_gui/ui_main_window.py b/b_asic/scheduler_gui/ui_main_window.py
index 66e5936d7799c78c8680d28d8048aa1b33ff478f..cf910e471ef7599eb3b682bc0081d9f45210e0b0 100644
--- a/b_asic/scheduler_gui/ui_main_window.py
+++ b/b_asic/scheduler_gui/ui_main_window.py
@@ -361,3 +361,4 @@ class Ui_MainWindow(object):
         self.actionToggle_full_screen.setText(
             _translate("MainWindow", "Toggle f&ull screen")
         )
+        self.actionToggle_full_screen.setShortcut(_translate("MainWindow", "F11"))