Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Event/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import Event.WindowsEvents as _Event
event_cls = _Event.WindowsEvent
flag_multiplemonitor = _Event.numofmonitors > 1
elif system() in ['Linux', 'Darwin']:
elif system() in ['Linux', 'Darwin', 'FreeBSD']:
import Event.UniversalEvents as _Event
event_cls = _Event.UniversalEvent
flag_multiplemonitor = False
Expand Down
2 changes: 1 addition & 1 deletion Recorder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
if system() == 'Windows':
import Recorder.WindowsRecorder as _Recorder
_Recorder.globalv.key_combination_trigger = ['lwin', 'lshift', 'rshift', 'lcontrol', 'rcontrol', 'lmenu', 'rmenu']
elif system() in ['Linux', 'Darwin']:
elif system() in ['Linux', 'Darwin', 'FreeBSD']:
import Recorder.UniversalRecorder as _Recorder
_Recorder.globalv.key_combination_trigger = ['win', 'shiftright', 'shift', 'ctrlright', 'ctrl', 'altright', 'alt']
else:
Expand Down