diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-02-22 00:45:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-22 00:45:51 -0500 |
commit | 692768230385d7d63938d7a40e9253c0f028d1cb (patch) | |
tree | 5b8222416cf425c2c2dee123a13dd774fd2a368c /security.d | |
parent | 46bd2bb5df02bd155bf92af6483c5b553afa7b6e (diff) | |
parent | f68d2fb33c433d13def0921db561eb23d400683c (diff) | |
download | sway-692768230385d7d63938d7a40e9253c0f028d1cb.tar.xz |
Merge branch 'master' into swaylock_colors
Diffstat (limited to 'security.d')
-rw-r--r-- | security.d/00-defaults.in | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/security.d/00-defaults.in b/security.d/00-defaults.in new file mode 100644 index 00000000..34831c65 --- /dev/null +++ b/security.d/00-defaults.in @@ -0,0 +1,52 @@ +# sway security rules +# +# Read sway-security(7) for details on how to secure your sway install. +# +# You MUST read this man page if you intend to attempt to secure your sway +# installation. +# +# DO NOT CHANGE THIS FILE. Override these defaults by writing new files in +# __SYSCONFDIR__/sway/security.d/* + +# Configures enabled compositor features for specific programs +permit * fullscreen keyboard mouse +permit __PREFIX__/bin/swaylock lock +permit __PREFIX__/bin/swaybg background +permit __PREFIX__/bin/swaygrab screenshot +permit __PREFIX__/bin/swaybar panel + +# Configures enabled IPC features for specific programs +ipc __PREFIX__/bin/swaymsg { + * enabled + + events { + * disabled + } +} + +ipc __PREFIX__/bin/swaybar { + bar-config enabled + outputs enabled + workspaces enabled + command enabled + + events { + workspace enabled + mode enabled + } +} + +ipc __PREFIX__/bin/swaygrab { + outputs enabled + tree enabled +} + +# Limits the contexts from which certain commands are permitted +commands { + * all + + fullscreen binding criteria + bindsym config + exit binding + kill binding +} |