diff options
author | Drew DeVault <[email protected]> | 2018-07-10 17:49:19 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2018-07-10 17:49:19 -0700 |
commit | 60bba5a961b646ebfca1df38d8da9df89064cc01 (patch) | |
tree | a79c2994ae5b7b958723de84ab807c0d28c1d5cd /include/ipc.h | |
parent | 8afe68f92063ff6db061f721868f601b2fc20191 (diff) | |
parent | ba3511b2431d331b735770e38e6bbd83cb5a9d66 (diff) |
Merge pull request #2233 from emersion/remove-clipboard
Remove `clipboard` command and `get_clipboard` message
Diffstat (limited to 'include/ipc.h')
-rw-r--r-- | include/ipc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/ipc.h b/include/ipc.h index 6f6795b3..0010718b 100644 --- a/include/ipc.h +++ b/include/ipc.h @@ -18,8 +18,7 @@ enum ipc_command_type { // sway-specific command types IPC_GET_INPUTS = 100, - IPC_GET_CLIPBOARD = 101, - IPC_GET_SEATS = 102, + IPC_GET_SEATS = 101, // Events sent from sway to clients. Events have the highest bits set. IPC_EVENT_WORKSPACE = ((1<<31) | 0), |