mirror of
https://github.com/swaywm/sway.git
synced 2024-11-14 14:34:07 +01:00
Merge branch 'master' into feature/2842_TruncateMessage
This commit is contained in:
commit
3a5a8aa5ad
@ -114,7 +114,7 @@ if scdoc.found()
|
|||||||
endforeach
|
endforeach
|
||||||
endif
|
endif
|
||||||
|
|
||||||
add_project_arguments('-DSYSCONFDIR="/@0@/@1@"'.format(prefix, sysconfdir), language : 'c')
|
add_project_arguments('-DSYSCONFDIR="/@0@"'.format(sysconfdir), language : 'c')
|
||||||
|
|
||||||
version = get_option('sway-version')
|
version = get_option('sway-version')
|
||||||
if version != ''
|
if version != ''
|
||||||
@ -157,7 +157,7 @@ subdir('swaynag')
|
|||||||
subdir('swaylock')
|
subdir('swaylock')
|
||||||
|
|
||||||
config = configuration_data()
|
config = configuration_data()
|
||||||
config.set('sysconfdir', join_paths(prefix, sysconfdir))
|
config.set('sysconfdir', sysconfdir)
|
||||||
config.set('datadir', join_paths(prefix, datadir))
|
config.set('datadir', join_paths(prefix, datadir))
|
||||||
config.set('prefix', prefix)
|
config.set('prefix', prefix)
|
||||||
|
|
||||||
|
@ -142,7 +142,11 @@ struct cmd_results *cmd_workspace(int argc, char **argv) {
|
|||||||
strcasecmp(argv[0], "current") == 0) {
|
strcasecmp(argv[0], "current") == 0) {
|
||||||
ws = workspace_by_name(argv[0]);
|
ws = workspace_by_name(argv[0]);
|
||||||
} else if (strcasecmp(argv[0], "back_and_forth") == 0) {
|
} else if (strcasecmp(argv[0], "back_and_forth") == 0) {
|
||||||
if (!(ws = workspace_by_name(argv[0])) && prev_workspace_name) {
|
if (!prev_workspace_name) {
|
||||||
|
return cmd_results_new(CMD_INVALID, "workspace",
|
||||||
|
"There is no previous workspace");
|
||||||
|
}
|
||||||
|
if (!(ws = workspace_by_name(argv[0]))) {
|
||||||
ws = workspace_create(NULL, prev_workspace_name);
|
ws = workspace_create(NULL, prev_workspace_name);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user