# FW 12 Cyberdeck Mode

**URL:** https://community.frame.work/t/fw-12-cyberdeck-mode/72338
**Category:** Linux
**Tags:** ubuntu
**Created:** [July 18, 2025, 6:11pm UTC](https://community.frame.work/t/fw-12-cyberdeck-mode/72338 "2025-07-18T18:11:41Z")
**Posts on this page:** 1
**Showing post:** 15

<div class="post-metadata">

### Author: ![William\_Murphy](https://sea1.discourse-cdn.com/flex001/user_avatar/community.frame.work/william_murphy/32/38656_2.png) [@William\_Murphy](https://community.frame.work/u/William_Murphy)
#### Post date: [July 26, 2025, 4:52am UTC](https://community.frame.work/t/fw-12-cyberdeck-mode/72338/15 "2025-07-26T04:52:12Z")

</div>

I received my FW12 and now I have cyberdeck mode working! One thing I didn’t anticipate was you need to disable the touchscreen in addition to the display, or else it will register touch inputs that are mapped to the external display (maybe some interesting possibilities there…)

So my final scripts are as follows.

Enable cyberdeck mode:

```auto
  kscreen-doctor output.eDP-1.disable;
  sudo framework_tool --tablet-mode laptop;
  sudo framework_tool --touchscreen-enable false;

```

Return to normal

```auto
  kscreen-doctor output.eDP-1.enable;
  sudo framework_tool --tablet-mode auto;
  sudo framework_tool --touchscreen-enable true;

```

I have a bash script that wraps these up in on/off/toggle commands and setup instructions available at [GitHub - wmurphyrd/framework-12-cyberdeck-mode: Tools for using the Framework 12 2-in-1 laptop with AR glasses instead of the built-in display](https://github.com/wmurphyrd/framework-12-cyberdeck-mode)

RE doing this all via EC, I did find [a command in Frameworks EC repo that looks like it would toggle the display](https://github.com/FrameworkComputer/EmbeddedController/blob/f6620a8200e8d1b349078710b271540b5b8a1a18/board/fusb307bgevb/lcd.c#L89), but it doesn’t appear to be mapped in framework\_tool. So I guess the next step is developing a rust app to send the EC commands for tablet mode, touchscreen, and lcd directly. Then it should work cross-platform (even Windows).

---

_[View the full topic](https://community.frame.work/t/fw-12-cyberdeck-mode/72338)._
