-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxset.c
More file actions
1702 lines (1562 loc) · 45.7 KB
/
Copy pathxset.c
File metadata and controls
1702 lines (1562 loc) · 45.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Copyright 1985, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
*/
/* Modified by Stephen so keyboard rate is set using XKB extensions */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#ifdef HAVE_X11_EXTENSIONS_DPMS_H
# define DPMSExtension
#endif
#ifdef HAVE_X11_EXTENSIONS_MITMISC_H
# define MITMISC
#endif
#ifdef HAVE_X11_XKBLIB_H
# define XKB
#endif
#if defined(HAVE_X11_EXTENSIONS_XF86MISC_H) && defined(HAVE_X11_EXTENSIONS_XF86MSCSTR_H)
# define XF86MISC
#endif
#if defined(HAVE_X11_EXTENSIONS_FONTCACHE_H) && defined(HAVE_X11_EXTENSIONS_FONTCACHEP_H)
# define FONTCACHE
#endif
#include <stdio.h>
#include <ctype.h>
#include <stdarg.h>
#include <stdlib.h>
#ifdef HAVE_USLEEP
#include <unistd.h>
#endif
#include <X11/Xos.h>
#include <X11/Xfuncs.h>
#include <X11/Xlib.h>
#include <X11/keysym.h>
#include <X11/Xproto.h>
#include <X11/Xutil.h>
#include <X11/Xmu/Error.h>
#ifdef MITMISC
# include <X11/extensions/MITMisc.h>
#endif
#ifdef DPMSExtension
# include <X11/extensions/dpms.h>
#endif /* DPMSExtension */
#ifdef XF86MISC
# include <X11/extensions/xf86misc.h>
# include <X11/extensions/xf86mscstr.h>
#endif
#ifdef XKB
# include <X11/XKBlib.h>
#endif
#ifdef FONTCACHE
# include <X11/extensions/fontcache.h>
# include <X11/extensions/fontcacheP.h>
static Status set_font_cache(Display *, long, long, long);
static void query_cache_status(Display *dpy);
#endif
#define ON 1
#define OFF 0
#define SERVER_DEFAULT (-1)
#define DONT_CHANGE -2
#define DEFAULT_ON (-50)
#define DEFAULT_TIMEOUT (-600)
#define ALL -1
#define TIMEOUT 1
#define INTERVAL 2
#define PREFER_BLANK 3
#define ALLOW_EXP 4
#ifdef XF86MISC
# define KBDDELAY_DEFAULT 500
# define KBDRATE_DEFAULT 30
#endif
#ifdef XKB
# define XKBDDELAY_DEFAULT 660
# define XKBDRATE_DEFAULT (1000/40)
#endif
#define nextarg(i, argv) \
argv[i]; \
if (i >= argc) \
break; \
static char *progName;
static int error_status = 0;
static int is_number(const char *arg, int maximum);
static void set_click(Display *dpy, int percent);
static void set_bell_vol(Display *dpy, int percent);
static void set_bell_pitch(Display *dpy, int pitch);
static void set_bell_dur(Display *dpy, int duration);
static void set_font_path(Display *dpy, const char *path, int special,
int before, int after);
static void set_led(Display *dpy, int led, int led_mode);
static void xkbset_led(Display *dpy, const char *led, int led_mode);
static void set_mouse(Display *dpy, int acc_num, int acc_denom, int threshold);
static void set_saver(Display *dpy, int mask, int value);
static void set_repeat(Display *dpy, int key, int auto_repeat_mode);
static void set_pixels(Display *dpy, unsigned long *pixels, caddr_t *colors,
int numpixels);
static void set_lock(Display *dpy, Bool onoff);
static const char *on_or_off(int val, int onval, const char *onstr,
int offval, const char *offstr,
char buf[], size_t bufsize);
static void query(Display *dpy);
static void usage(const char *fmt, ...) _X_NORETURN _X_ATTRIBUTE_PRINTF(1,2);
static void error(const char *message) _X_NORETURN;
static int local_xerror(Display *dpy, XErrorEvent *rep);
#ifdef XF86MISC
static void set_repeatrate(Display *dpy, int delay, int rate);
#endif
#ifdef XKB
static void xkbset_repeatrate(Display *dpy, int delay, int rate);
#endif
int
main(int argc, char *argv[])
{
const char *arg;
register int i;
int percent;
int acc_num, acc_denom, threshold;
#ifdef DPMSExtension
CARD16 standby_timeout, suspend_timeout, off_timeout;
#endif
int key, auto_repeat_mode;
XKeyboardControl values;
#define MAX_PIXEL_COUNT 512
unsigned long pixels[MAX_PIXEL_COUNT];
caddr_t colors[MAX_PIXEL_COUNT];
int numpixels = 0;
char *disp = NULL;
Display *dpy;
Bool hasargs = False;
int miscpresent = 0;
int xkbpresent = 0;
#ifdef XKB
int xkbmajor = XkbMajorVersion, xkbminor = XkbMinorVersion;
int xkbopcode, xkbevent, xkberror;
#else
#endif
#ifdef FONTCACHE
long himark, lowmark, balance;
#endif
progName = argv[0];
for (i = 1; i < argc; i++) {
arg = argv[i];
if (strcmp(arg, "-display") == 0 || strcmp(arg, "-d") == 0) {
if (++i >= argc)
usage("missing argument to -display");
disp = argv[i];
} else if (strcmp(arg, "-version") == 0) {
puts(PACKAGE_STRING);
exit(EXIT_SUCCESS);
} else {
hasargs = True;
}
}
if (!hasargs) {
usage(NULL); /* replace with window interface */
}
dpy = XOpenDisplay(disp); /* Open display and check for success */
if (dpy == NULL) {
fprintf(stderr, "%s: unable to open display \"%s\"\n",
argv[0], XDisplayName(disp));
exit(EXIT_FAILURE);
}
XSetErrorHandler(local_xerror);
for (i = 1; i < argc;) {
arg = argv[i++];
if (strcmp(arg, "-display") == 0 || strcmp(arg, "-d") == 0) {
++i; /* already dealt with */
continue;
} else if (*arg == '-' && *(arg + 1) == 'c') { /* Does arg start
with "-c"? */
set_click(dpy, 0); /* If so, turn click off */
} else if (*arg == 'c') { /* Well, does it start
with "c", then? */
percent = SERVER_DEFAULT; /* Default click volume. */
if (i >= argc) {
set_click(dpy, percent); /* set click to default */
break;
}
arg = nextarg(i, argv);
if (strcmp(arg, "on") == 0) { /* Let click be default. */
percent = DEFAULT_ON;
i++;
} else if (strcmp(arg, "off") == 0) {
percent = 0; /* Turn it off. */
i++;
} else if (is_number(arg, 100)) {
percent = atoi(arg); /* Set to spec. volume */
i++;
}
set_click(dpy, percent);
} else if (strcmp(arg, "-b") == 0) {
set_bell_vol(dpy, 0); /* Then turn off bell. */
} else if (strcmp(arg, "b") == 0) {
percent = SERVER_DEFAULT; /* Set bell to default. */
if (i >= argc) {
set_bell_vol(dpy, percent); /* set bell to default */
set_bell_pitch(dpy, percent); /* set pitch to default */
set_bell_dur(dpy, percent); /* set duration to default */
break;
}
arg = nextarg(i, argv);
if (strcmp(arg, "on") == 0) { /* Let it stay that way. */
set_bell_vol(dpy, DEFAULT_ON); /* set bell on */
set_bell_pitch(dpy, percent); /* set pitch to default */
set_bell_dur(dpy, percent); /* set duration to default */
i++;
} else if (strcmp(arg, "off") == 0) {
percent = 0; /* Turn the bell off. */
set_bell_vol(dpy, percent);
i++;
} else if (is_number(arg, 100)) { /* If volume is given: */
percent = atoi(arg); /* set bell appropriately. */
set_bell_vol(dpy, percent);
i++;
arg = nextarg(i, argv);
if (is_number(arg, 32767)) { /* If pitch is given: */
set_bell_pitch(dpy, atoi(arg)); /* set the bell. */
i++;
arg = nextarg(i, argv);
if (is_number(arg, 32767)) { /* If duration is given: */
set_bell_dur(dpy, atoi(arg)); /* set the bell. */
i++;
}
}
} else
set_bell_vol(dpy, percent); /* set bell to default */
}
#ifdef MITMISC
else if (strcmp(arg, "bc") == 0) {
int dummy;
if (XMITMiscQueryExtension(dpy, &dummy, &dummy))
XMITMiscSetBugMode(dpy, True);
else
fprintf(stderr,
"server does not have extension for bc option\n");
} else if (strcmp(arg, "-bc") == 0) {
int dummy;
if (XMITMiscQueryExtension(dpy, &dummy, &dummy))
XMITMiscSetBugMode(dpy, False);
else
fprintf(stderr,
"server does not have extension for -bc option\n");
}
#endif
#ifdef FONTCACHE
else if (strcmp(arg, "fc") == 0) {
int dummy;
FontCacheSettings cs;
if (FontCacheQueryExtension(dpy, &dummy, &dummy)) {
FontCacheGetCacheSettings(dpy, &cs);
himark = cs.himark / 1024;
lowmark = cs.lowmark / 1024;
balance = cs.balance;
if (i >= argc) {
/* Set to server's values, and clear all cache
in side effect */
set_font_cache(dpy, himark, lowmark, balance);
break;
}
arg = nextarg(i, argv);
if (is_number(arg, 32767)) { /* If hi-mark is given: */
himark = atoi(arg);
i++;
if (himark <= 0) {
usage("hi-mark must be greater than 0");
}
if (i >= argc) {
lowmark = (himark * 70) / 100;
set_font_cache(dpy, himark, lowmark, balance);
break;
}
arg = nextarg(i, argv);
if (is_number(arg, 32767)) { /* If low-mark is given: */
lowmark = atoi(arg);
i++;
if (lowmark <= 0) {
usage("low-mark must be greater than 0");
}
if (himark <= lowmark) {
usage("hi-mark must be greater than low-mark");
}
if (i >= argc) {
set_font_cache(dpy, himark, lowmark, balance);
break;
}
arg = nextarg(i, argv);
if (is_number(arg, 90)) {
balance = atoi(arg);
i++;
if (!(10 <= balance && balance <= 90)) {
usage("balance must be 10 to 90\n");
}
set_font_cache(dpy, himark, lowmark, balance);
}
}
} else if (strcmp(arg, "s") == 0
|| strcmp(arg, "status") == 0) {
/* display cache status */
query_cache_status(dpy);
}
} else {
fprintf(stderr,
"server does not have extension for fc option\n");
}
}
#endif
else if (strcmp(arg, "fp") == 0) { /* set font path */
if (i >= argc) {
arg = "default";
} else {
arg = nextarg(i, argv);
}
set_font_path(dpy, arg, 1, 0, 0); /* special argument */
i++;
} else if (strcmp(arg, "fp=") == 0) { /* unconditionally set */
if (i >= argc) {
usage("missing fp= argument");
} else {
arg = nextarg(i, argv);
}
set_font_path(dpy, arg, 0, 0, 0); /* not special, set */
i++;
} else if (strcmp(arg, "+fp") == 0) { /* set font path */
if (i >= argc)
usage("missing +fp argument");
arg = nextarg(i, argv);
set_font_path(dpy, arg, 0, 1, 0); /* not special, prepend */
i++;
} else if (strcmp(arg, "fp+") == 0) { /* set font path */
if (i >= argc)
usage("missing fp+ argument");
arg = nextarg(i, argv);
set_font_path(dpy, arg, 0, 0, 1); /* not special, append */
i++;
} else if (strcmp(arg, "-fp") == 0) { /* set font path */
if (i >= argc)
usage("missing -fp argument");
arg = nextarg(i, argv);
set_font_path(dpy, arg, 0, -1, 0); /* not special, preremove */
i++;
} else if (strcmp(arg, "fp-") == 0) { /* set font path */
if (i >= argc)
usage("missing fp- argument");
arg = nextarg(i, argv);
set_font_path(dpy, arg, 0, 0, -1); /* not special, postremove */
i++;
} else if (strcmp(arg, "-led") == 0) { /* Turn off one or all LEDs */
values.led_mode = OFF;
values.led = ALL; /* None specified */
if (i >= argc) {
set_led(dpy, values.led, values.led_mode);
break;
}
arg = nextarg(i, argv);
if (strcmp(arg, "named") == 0) {
if (++i >= argc) {
usage("missing argument to led named");
} else {
arg = nextarg(i, argv);
xkbset_led(dpy, arg, values.led_mode);
}
break;
}
if (is_number(arg, 32) && atoi(arg) > 0) {
values.led = atoi(arg);
i++;
}
set_led(dpy, values.led, values.led_mode);
} else if (strcmp(arg, "led") == 0) { /* Turn on one or all LEDs */
values.led_mode = ON;
values.led = ALL;
if (i >= argc) {
set_led(dpy, values.led,
values.led_mode); /* set led to def */
break;
}
arg = nextarg(i, argv);
if (strcmp(arg, "named") == 0) {
if (++i >= argc) {
usage("missing argument to -led named");
} else {
arg = nextarg(i, argv);
xkbset_led(dpy, arg, values.led_mode);
}
break;
}
if (strcmp(arg, "on") == 0) {
i++;
} else if (strcmp(arg, "off") == 0) { /* ...except in this case. */
values.led_mode = OFF;
i++;
} else if (is_number(arg, 32) && atoi(arg) > 0) {
values.led = atoi(arg);
i++;
}
set_led(dpy, values.led, values.led_mode);
}
/* Set pointer (mouse) settings: Acceleration and Threshold. */
else if (strcmp(arg, "m") == 0 || strcmp(arg, "mouse") == 0) {
acc_num = SERVER_DEFAULT; /* restore server defaults */
acc_denom = SERVER_DEFAULT;
threshold = SERVER_DEFAULT;
if (i >= argc) {
set_mouse(dpy, acc_num, acc_denom, threshold);
break;
}
arg = argv[i];
if (strcmp(arg, "default") == 0) {
i++;
} else if (*arg >= '0' && *arg <= '9') {
acc_denom = 1;
sscanf(arg, "%d/%d", &acc_num, &acc_denom);
i++;
if (i >= argc) {
set_mouse(dpy, acc_num, acc_denom, threshold);
break;
}
arg = argv[i];
if (*arg >= '0' && *arg <= '9') {
threshold = atoi(arg); /* Set threshold as user specified. */
i++;
}
}
set_mouse(dpy, acc_num, acc_denom, threshold);
}
#ifdef DPMSExtension
else if (strcmp(arg, "+dpms") == 0) { /* turn on DPMS */
int dummy;
if (DPMSQueryExtension(dpy, &dummy, &dummy))
DPMSEnable(dpy);
else
fprintf(stderr,
"server does not have extension for +dpms option\n");
} else if (strcmp(arg, "-dpms") == 0) { /* shut off DPMS */
int dummy;
if (DPMSQueryExtension(dpy, &dummy, &dummy))
DPMSDisable(dpy);
else
fprintf(stderr,
"server does not have extension for -dpms option\n");
} else if (strcmp(arg, "dpms") == 0) { /* tune DPMS */
int dummy;
if (DPMSQueryExtension(dpy, &dummy, &dummy)) {
DPMSGetTimeouts(dpy, &standby_timeout, &suspend_timeout,
&off_timeout);
if (i >= argc) {
DPMSEnable(dpy);
break;
}
arg = argv[i];
if (*arg >= '0' && *arg <= '9') {
sscanf(arg, "%hu", &standby_timeout);
i++;
arg = argv[i];
if ((arg) && (*arg >= '0' && *arg <= '9')) {
sscanf(arg, "%hu", &suspend_timeout);
i++;
arg = argv[i];
if ((arg) && (*arg >= '0' && *arg <= '9')) {
sscanf(arg, "%hu", &off_timeout);
i++;
arg = argv[i];
}
}
if ((suspend_timeout != 0)
&& (standby_timeout > suspend_timeout)) {
fprintf(stderr, "illegal combination of values\n");
fprintf(stderr,
" standby time of %d is greater than suspend time of %d\n",
standby_timeout, suspend_timeout);
exit(EXIT_FAILURE);
}
if ((off_timeout != 0) && (suspend_timeout > off_timeout)) {
fprintf(stderr, "illegal combination of values\n");
fprintf(stderr,
" suspend time of %d is greater than off time of %d\n",
suspend_timeout, off_timeout);
exit(EXIT_FAILURE);
}
if ((suspend_timeout == 0) && (off_timeout != 0) &&
(standby_timeout > off_timeout)) {
fprintf(stderr, "illegal combination of values\n");
fprintf(stderr,
" standby time of %d is greater than off time of %d\n",
standby_timeout, off_timeout);
exit(EXIT_FAILURE);
}
DPMSEnable(dpy);
DPMSSetTimeouts(dpy, standby_timeout, suspend_timeout,
off_timeout);
} else if (strcmp(arg, "force") == 0) {
if (++i >= argc)
usage("missing argument to dpms force");
arg = argv[i];
/*
* The calls to usleep below are necessary to
* delay the actual DPMS mode setting briefly.
* Without them, it's likely that the mode will be
* set between the Down and Up key transitions, in
* which case the Up transition may immediately
* turn the display back on.
*
*/
#ifdef HAVE_USLEEP
# define Usleep(us) usleep((us))
#elif defined(WIN32)
# define Usleep(us) Sleep(us)
#else
# define Usleep(us) sleep((us / 1000000 > 0) ? us / 1000000 : 1)
#endif /* HAVE_USLEEP */
if (strcmp(arg, "on") == 0) {
DPMSEnable(dpy);
DPMSForceLevel(dpy, DPMSModeOn);
i++;
} else if (strcmp(arg, "standby") == 0) {
DPMSEnable(dpy);
Usleep(100000);
DPMSForceLevel(dpy, DPMSModeStandby);
i++;
} else if (strcmp(arg, "suspend") == 0) {
DPMSEnable(dpy);
Usleep(100000);
DPMSForceLevel(dpy, DPMSModeSuspend);
i++;
} else if (strcmp(arg, "off") == 0) {
DPMSEnable(dpy);
Usleep(100000);
DPMSForceLevel(dpy, DPMSModeOff);
i++;
} else {
fprintf(stderr, "bad parameter %s\n", arg);
i++;
}
}
} else {
fprintf(stderr,
"server does not have extension for dpms option\n");
}
}
#endif /* DPMSExtension */
else if (strcmp(arg, "s") == 0) {
if (i >= argc) {
set_saver(dpy, ALL, 0); /* Set everything to default */
break;
}
arg = argv[i];
if (strcmp(arg, "blank") == 0) { /* Alter blanking preference. */
set_saver(dpy, PREFER_BLANK, PreferBlanking);
i++;
} else if (strcmp(arg, "noblank") == 0) { /* Ditto. */
set_saver(dpy, PREFER_BLANK, DontPreferBlanking);
i++;
} else if (strcmp(arg, "expose") == 0) { /* Alter exposure preference. */
set_saver(dpy, ALLOW_EXP, AllowExposures);
i++;
} else if (strcmp(arg, "noexpose") == 0) { /* Ditto. */
set_saver(dpy, ALLOW_EXP, DontAllowExposures);
i++;
} else if (strcmp(arg, "off") == 0) {
set_saver(dpy, TIMEOUT, 0); /* Turn off screen saver. */
i++;
if (i >= argc)
break;
arg = argv[i];
if (strcmp(arg, "off") == 0) {
set_saver(dpy, INTERVAL, 0);
i++;
}
} else if (strcmp(arg, "default") == 0) { /* Leave as default. */
set_saver(dpy, ALL, SERVER_DEFAULT);
i++;
} else if (strcmp(arg, "on") == 0) { /* Turn on. */
set_saver(dpy, ALL, DEFAULT_TIMEOUT);
i++;
} else if (strcmp(arg, "activate") == 0) { /* force it active */
XActivateScreenSaver(dpy);
i++;
} else if (strcmp(arg, "reset") == 0) { /* force it inactive */
XResetScreenSaver(dpy);
i++;
} else if (*arg >= '0' && *arg <= '9') { /* Set as user wishes. */
set_saver(dpy, TIMEOUT, atoi(arg));
i++;
if (i >= argc)
break;
arg = argv[i];
if (*arg >= '0' && *arg <= '9') {
set_saver(dpy, INTERVAL, atoi(arg));
i++;
}
}
} else if (strcmp(arg, "-r") == 0) { /* Turn off one or
all autorepeats */
auto_repeat_mode = OFF;
key = ALL; /* None specified */
arg = argv[i];
if (i < argc)
if (is_number(arg, 255)) {
key = atoi(arg);
i++;
}
set_repeat(dpy, key, auto_repeat_mode);
} else if (strcmp(arg, "r") == 0) { /* Turn on one or
all autorepeats */
auto_repeat_mode = ON;
key = ALL; /* None specified */
arg = argv[i];
if (i < argc) {
if (strcmp(arg, "on") == 0) {
i++;
} else if (strcmp(arg, "off") == 0) { /* ...except in
this case */
auto_repeat_mode = OFF;
i++;
}
#if defined(XF86MISC) || defined(XKB)
else if (strcmp(arg, "rate") == 0) { /* ...or this one. */
int delay = 0, rate = 0;
#ifdef XF86MISC
int rate_set = 0;
#endif
#ifdef XKB
if (XkbQueryExtension(dpy, &xkbopcode, &xkbevent,
&xkberror, &xkbmajor, &xkbminor)) {
delay = XKBDDELAY_DEFAULT;
rate = XKBDRATE_DEFAULT;
xkbpresent = 1;
}
#endif
#ifdef XF86MISC
if (!xkbpresent) {
int dummy;
if (XF86MiscQueryExtension(dpy, &dummy, &dummy)) {
delay = KBDDELAY_DEFAULT;
rate = KBDRATE_DEFAULT;
miscpresent = 1;
}
}
#endif
if (!xkbpresent && !miscpresent)
fprintf(stderr,
"server does not have extension for \"r rate\" option\n");
i++;
arg = argv[i];
if (i < argc) {
if (is_number(arg, 10000) && atoi(arg) > 0) {
delay = atoi(arg);
i++;
arg = argv[i];
if (i < argc) {
if (is_number(arg, 255) && atoi(arg) > 0) {
rate = atoi(arg);
i++;
}
}
}
}
#ifdef XKB
if (xkbpresent) {
xkbset_repeatrate(dpy, delay, 1000 / rate);
#ifdef XF86MISC
rate_set = 1;
#endif
}
#endif
#ifdef XF86MISC
if (miscpresent && !rate_set) {
set_repeatrate(dpy, delay, rate);
}
#endif
}
#endif
else if (is_number(arg, 255)) {
key = atoi(arg);
i++;
}
}
set_repeat(dpy, key, auto_repeat_mode);
} else if (strcmp(arg, "p") == 0) {
if (i + 1 >= argc)
usage("missing argument to p");
arg = argv[i];
if (numpixels >= MAX_PIXEL_COUNT)
usage("more than %d pixels specified", MAX_PIXEL_COUNT);
if (*arg >= '0' && *arg <= '9')
pixels[numpixels] = strtoul(arg, NULL, 10);
else
usage("invalid pixel number %s", arg);
i++;
colors[numpixels] = argv[i];
i++;
numpixels++;
} else if (strcmp(arg, "-k") == 0) {
set_lock(dpy, OFF);
} else if (strcmp(arg, "k") == 0) {
set_lock(dpy, ON);
} else if (strcmp(arg, "q") == 0 || strcmp(arg, "-q") == 0) {
query(dpy);
} else
usage("unknown option %s", arg);
}
if (numpixels)
set_pixels(dpy, pixels, colors, numpixels);
XCloseDisplay(dpy);
exit(error_status); /* Done. We can go home now. */
}
static int
is_number(const char *arg, int maximum)
{
const char *p;
if (arg[0] == '-' && arg[1] == '1' && arg[2] == '\0')
return (1);
for (p = arg; isdigit(*p); p++) ;
if (*p || atoi(arg) > maximum)
return (0);
return (1);
}
/* These next few functions do the real work (xsetting things).
*/
static void
set_click(Display *dpy, int percent)
{
XKeyboardControl values;
XKeyboardState kbstate;
values.key_click_percent = percent;
if (percent == DEFAULT_ON)
values.key_click_percent = SERVER_DEFAULT;
XChangeKeyboardControl(dpy, KBKeyClickPercent, &values);
if (percent == DEFAULT_ON) {
XGetKeyboardControl(dpy, &kbstate);
if (!kbstate.key_click_percent) {
values.key_click_percent = -percent;
XChangeKeyboardControl(dpy, KBKeyClickPercent, &values);
}
}
return;
}
static void
set_bell_vol(Display *dpy, int percent)
{
XKeyboardControl values;
XKeyboardState kbstate;
values.bell_percent = percent;
if (percent == DEFAULT_ON)
values.bell_percent = SERVER_DEFAULT;
XChangeKeyboardControl(dpy, KBBellPercent, &values);
if (percent == DEFAULT_ON) {
XGetKeyboardControl(dpy, &kbstate);
if (!kbstate.bell_percent) {
values.bell_percent = -percent;
XChangeKeyboardControl(dpy, KBBellPercent, &values);
}
}
return;
}
static void
set_bell_pitch(Display *dpy, int pitch)
{
XKeyboardControl values;
values.bell_pitch = pitch;
XChangeKeyboardControl(dpy, KBBellPitch, &values);
return;
}
static void
set_bell_dur(Display *dpy, int duration)
{
XKeyboardControl values;
values.bell_duration = duration;
XChangeKeyboardControl(dpy, KBBellDuration, &values);
return;
}
/*
* Set, add, or subtract the path according to before and after flags:
*
* before after action
*
* 0 0 FontPath := path
* -1 0 FontPath := current - path
* 0 -1 FontPath := current - path
* 1 0 FontPath := path + current
* 0 1 FontPath := current + path
*/
static void
set_font_path(Display *dpy, const char *path, int special, int before, int after)
{
char *directories = NULL;
char **directoryList = NULL;
unsigned int ndirs = 0;
char **currentList = NULL;
unsigned int ncurrent = 0;
if (special) {
if (strcmp(path, "default") == 0) {
XSetFontPath(dpy, NULL, 0);
return;
}
if (strcmp(path, "rehash") == 0) {
currentList = XGetFontPath(dpy, (int *) &ncurrent);
if (!currentList) {
fprintf(stderr, "%s: unable to get current font path.\n",
progName);
return;
}
XSetFontPath(dpy, currentList, (int) ncurrent);
XFreeFontPath(currentList);
return;
}
/*
* for now, fall though and process keyword and directory list for
* compatibility with previous versions.
*/
}
/*
* parse the path list. If before or after is non-zero, we'll need
* the current value.
*/
if (before != 0 || after != 0) {
currentList = XGetFontPath(dpy, (int *) &ncurrent);
if (!currentList) {
fprintf(stderr, "%s: unable to get old font path.\n", progName);
before = after = 0;
}
}
{
/* count the number of directories in path */
const char *cp = path;
ndirs = 1;
while ((cp = strchr(cp, ',')) != NULL) {
ndirs++;
cp++;
}
}
directoryList = (char **)malloc(ndirs * sizeof(char *));
if (!directoryList)
error("out of memory for font path directory list");
directories = strdup(path);
if (!directories)
error("out of memory for font path directory string");
else
{
/* mung the path and set directoryList pointers */
unsigned int i = 0;
char *cp = directories;
directoryList[i++] = cp;
while ((cp = strchr(cp, ',')) != NULL) {
directoryList[i++] = cp + 1;
*cp++ = '\0';
}
if (i != ndirs) {
fprintf(stderr,
"%s: internal error, only parsed %d of %d directories.\n",
progName, i, ndirs);
exit(EXIT_FAILURE);
}
}
/*
* now we have have parsed the input path, so we can set it
*/
if (before == 0 && after == 0) {
XSetFontPath(dpy, directoryList, (int) ndirs);
}
/* if adding to list, build a superset */
if (before > 0 || after > 0) {
unsigned int nnew = ndirs + ncurrent;
char **newList = (char **)malloc(nnew * sizeof(char *));
if (!newList)
error("out of memory");
if (before > 0) { /* new + current */
memmove((char *)newList, (char *)directoryList,
(ndirs * sizeof(char *)));
memmove((char *)(newList + ndirs), (char *)currentList,
(ncurrent * sizeof(char *)));
XSetFontPath(dpy, newList, (int) nnew);
} else if (after > 0) {
memmove((char *)newList, (char *)currentList,
(ncurrent * sizeof(char *)));
memmove((char *)(newList + ncurrent), (char *)directoryList,
(ndirs * sizeof(char *)));
XSetFontPath(dpy, newList,(int) nnew);
}
free((char *)newList);
}
/* if deleting from list, build one the same size */
if (before < 0 || after < 0) {
unsigned int i, j;
unsigned int nnew = 0;
char **newList = (char **)malloc(ncurrent * sizeof(char *));
if (!newList)
error("out of memory");
for (i = 0; i < ncurrent; i++) {
for (j = 0; j < ndirs; j++) {
if (strcmp(currentList[i], directoryList[j]) == 0)
break;
}
/* if we ran out, then insert into new list */
if (j == ndirs)
newList[nnew++] = currentList[i];
}
if (nnew == ncurrent) {
fprintf(stderr,
"%s: warning, no entries deleted from font path.\n",
progName);
}
XSetFontPath(dpy, newList, (int) nnew);
free((char *)newList);
}
free(directories);
if (directoryList)
free((char *)directoryList);
if (currentList)
XFreeFontPath(currentList);