-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.ctwmrc
1041 lines (944 loc) · 32 KB
/
.ctwmrc
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
#---------------------------------------------------------
# EMERGENCY
# This line is here so that U will be able 2 restart CTWM
# even if the rest of the file doesn't work very well!
#---------------------------------------------------------
"F6" = s : r|w|t|m|f : f.twmrc #shift "L2": source .ctwmrc
#---------------------------------------------------------
# FONTS
#---------------------------------------------------------
#-*-fira sans-medium-r-*-*-*-*-*-*-*-*-*-*
#"-adobe-helvetica-bold-r-nformal--16*"
#-*-fira sans-medium-r-*-*-17-*-100-100-*-*-ascii-*
#TitleFont "-*-fixed-medium-r-*-*-13-*-75-75-c-60-*-*"
#TitleFont ""-dec-terminal-medium-r-*-*-*-*-*-*-*-*-*-*"
#TitleFont "-*-dejavu sans mono-medium-r-normal--*-80-*-*-*-*-iso10646-1"
#IconManagerFont "-*-helvetica-medium-r-*-*-14-*-*-*-*-*-*-*"
#IconFont "-*-helvetica-medium-r-*-*-14-*-*-*-*-*-*-*"
#ResizeFont "-*-helvetica-medium-r-*-*-14-*-*-*-*-*-*-*"
#WorkSpaceFont "-*-helvetica-medium-r-*-*-14-*-*-*-*-*-*-*"
#TitleFont "-misc-hellvetica-medium-r-normal-*-14-*-*-*-*-*-*-*"
#TitleFont "-*-dejavu sans mono-medium-r-normal--*-80-*-*-*-*-iso10646-1"
#TitleFont "-*-helvetica-bold-r-*-*-*-*-*-*-*-*-*-*"
TitleFont "-*-fixed-medium-*-*-*-15-*-*-*-*-*-*-*"
MenuFont "-*-fixed-medium-*-*-*-15-*-*-*-*-*-*-*"
IconManagerFont "-*-fixed-medium-*-*-*-15-*-*-*-*-*-*-*"
IconFont "-*-fixed-medium-*-*-*-15-*-*-*-*-*-*-*"
ResizeFont "-*-fixed-medium-*-*-*-15-*-*-*-*-*-*-*"
WorkSpaceFont "-*-fixed-medium-*-*-*-15-*-*-*-*-*-*-*"
#BSD Settings that don't seem to work
#TitleFont "-*-spleen-*-*-*-*-12-*-*-*-*-*-*-*"
#MenuFont "-*-spleen-*-*-*-*-12-*-*-*-*-*-*-*"
#IconManagerFont "-*-spleen-*-*-*-*-12-*-*-*-*-*-*-*"
#IconFont "-*-spleen-*-*-*-*-12-*-*-*-*-*-*-*"
#ResizeFont "-*-spleen-*-*-*-*-12-*-*-*-*-*-*-*"
#WorkSpaceFont "-*-spleen-*-*-*-*-12-*-*-*-*-*-*-*"
#---------------------------------------------------------
# PIXMAP CONFIG and PIXMAPS
#---------------------------------------------------------
#PixmapDirectory "/usr/share/pixmaps/" # dir. for xpms
PixmapDirectory "$HOME/.local/share/icons/m0dw3rks/xpm"
#Pixmaps
#{
#TitleHighLight "xpm:window-controls/black/titlebar.xpm"
#}
#---------------------------------------------------------
# COLOR CONFIG and COLORS
#---------------------------------------------------------
#BeNiceToColorMap # less col in shadows
Color
{
BorderColor "#FFA600" {
" qtextpad" "#41cd52"
"pcmanfm-qt" "#41cd52"
"barrier" "#FF0000"
"deskflow" "#FF0000"
"Pale Moon" "#778a99"
"Brave" "#FF6800"
"Tor" "#AA00FF"
"Waterfox" "#88AFFF"
#"sakura" "#FFAF00"
"urxvt" "#FF0000"
"xterm" "#FF0000"
"st" "#0e5f88"
"spacefm" "#49007a"
"spacefm.Spacefm" "#49007a"
"VirtualBox" "#6868FF"
"fsearch" "#00FF00"
#"klogg" "#AA00FF"
"vlc" "#FF6800"
"VLC" "#FF6800"
"mpv" "#420143"
"audacious" "#FF8800"
"vscodium" "#0078d4"
"m0dw3rks" "#888888"
"fsrv" "#888888"
"tv" "#0000d7"
"tlx" "#0000d7"
"archway" "#7b8d32"
"shanniwar" "#1b0036"
"shannifrag" "#72008f"
"rpi" "#d70065"
"opi" "#ff8700"
"z4g41" "#37abc8"
"m0d0n3" "#0087e3"
"m01" "#ffda00"
"bridge" "#775738"
"ewatch" "#AAAAAA"
"cornerstone" "#A8A8A8"
"Buddy List" "#72008f"
}
BorderTileBackground "#3F3F3F" {
" qtextpad" "#32993f"
"pcmanfm-qt" "#32993f"
"barrier" "#6F0000"
"deskflow" "#6F0000"
"Pale Moon" "#46515a"
"Brave" "#993e00"
"Tor" "#AA00FF"
"Waterfox" "#526999"
#"sakura" "#FFAF00"
"urxvt" "#680000"
"xterm" "#680000"
"st" "#0e5f88"
"spacefm" "#300050"
"spacefm.Spacefm" "#300050"
"VirtualBox" "#3e3e99"
"fsearch" "#006F00"
#"klogg" "#AA00FF"
"vlc" "#993e00"
"VLC" "#993e00"
"mpv" "#420143"
"audacious" "#995200"
"vscodium" "#005799"
"m0dw3rks" "#404040"
"fsrv" "#404040"
"tv" "#000067"
"tlx" "#000067"
"archway" "#384017"
"shanniwar" "#0f001f"
"shannifrag" "#350042"
"rpi" "#7a0039"
"opi" "#995100"
"z4g41" "#37abc8"
"m0d0n3" "#004f85"
"m01" "#998300"
"bridge" "#332518"
"ewatch" "#888888"
"cornerstone" "#686868"
"Buddy List" "#350042"
}
BorderTileForeground "#FFFF00"
DefaultBackground "#242424"
DefaultForeground "#CACACA"
TitleBackground "#FFA600"
TitleForeground "#000000"
MenuBackground "#121212"
MenuForeground "#FFA600"
MenuTitleBackground "black"
MenuTitleForeground "white"
MenuShadowColor "black" # default is black
IconBackground "#FFA600"
IconForeground "green"
IconBorderColor "black"
IconManagerBackground "#121212"
IconManagerForeground "#888888"
IconManagerHighlight "#FFA600"
MapWindowBackground "black" # BGcol for WSMwins
MapWindowForeground "#FFA600" # FGcol for WSMwins
}
SaveColor # tell client about these
{ # settings to "smooth"
BorderColor
TitleBackground
TitleForeground
}
#---------------------------------------------------------
# MONOCHROME "COLOR"-SETTINGS
#---------------------------------------------------------
Monochrome
{
BorderColor "black"
BorderTileForeground "black"
BorderTileBackground "white"
TitleForeground "black"
TitleBackground "white"
MenuTitleForeground "black"
MenuTitleBackground "white"
MapWindowForeground "white"
MapWindowBackground "white"
}
#---------------------------------------------------------
# GENERAL CTWM CONFIG
#---------------------------------------------------------
NoGrabServer
DontShowWelcomeWindow # Hide silly splash
RestartPreviousState # use previous if any
CenterFeedbackWindow # move pos.info to center
DecorateTransients # give transients TB
#TransientHasOccupation
TransientOnTop 100 # Put transients top when they appear
UsePPosition "on" # Help kbd instantiated windows get focus
RandomPlacement "on" "+1920+0" # ask for pos? # Help kbd instantiated windows get focus
AutoFocusToTransients # Help kbd instantiated windows get focus
IconifyStyle "sweep"
IconifyByUnmapping #DontIconifyByUnmapping ## show hide icons when applications are iconified
Zoom 24
WarpRingOnScreen # only warp on current workspace # Enable Alt+Tab type window circulation
WarpUnmapped # deiconfiy unmapped and warp
DontMoveOff # Add below & U get resistance
#MoveOffResistance -1 # how hard must I push?
WindowGeometries { #affects transient dialogs too!
"Navigator.mercury-default" "1280x1080+640+0"
"Navigator.Waterfox-left" "1280x1080+3840+0"
"Navigator.librewolf" "1280x1080+1920+0"
"Navigator.Tor Browser" "1280x1080+2560+0"
"Workout System" "1280x540+640+0"
"m0dmail" "1280x540+640+540"
"steamwebhelper" "1280x800+3840+280"
"Shotcut" "5760x1080+0+0"
"inkscape" "3256x1080+1864+0"
#"Unity" "5120x1080+0+0"
#"Unity.Unity" "5120x1080+0+0"
"Buddy List" "250x405+3840+608"
"qmmp" "1920x1080+0+0"
"Audacious" "1920x1080+1920+0"
#"Textosaurus" "1280x1080+3840+0"
}
ConstrainedMoveTime 0 # How quick to 2click to constrain
XMoveGrid 64
YMoveGrid 32
MoveDelta 4 # dist. 4 move 2 work
AnimationSpeed 12 # update speed for animated things
ClearShadowContrast 50 # clear shadow for 3D
DarkShadowContrast 50 # dark shadow for 3D
MovePackResistance 64 # how many pix. res. be4 overlap?
MaxWindowSize "5760x1080" # default
DontSetInactive {
"Unity"
"Steam"
"Moonring"
"sc2_x64.exe.sc2_x64.exe"
}
#NoStackMode {} # ignore stacking reqs from clients
RaiseWhenAutoUnSqueeze
#---------------------------------------------------------
# TITLEBAR CONFIG and BUTTONS
#---------------------------------------------------------
UseThreeDTitles
NoDefaults # not use default buttons
#MakeTitle
SqueezeTitle # shrinks titlebar # BeOS Style or "Normal"
#{ # optional winlist
#}
TitleButtonShadowDepth 0
TitleShadowDepth 0
TitleButtonBorderWidth 0
TitlePadding 0 # frame around TBobjects?
ButtonIndent 0 # indentated TBbuttons?
FramePadding 2 # frame around TB?
TitleJustification "left" # right/left/center
#RightTitleButton "xpm:resize.xpm" = f.resize
#RightTitleButton "xpm:window-controls/black/verexp.xpm" = f.zoom
#RightTitleButton "xpm:window-controls/black/horexp.xpm" = f.hzoom
LeftTitleButton "xpm:window-controls/black/close.xpm" = f.delete
RightTitleButton "xpm:window-controls/black/maximize.xpm" = f.fullzoom
#LeftTitleButton "xpm:window-controls/black/minimize.xpm" = f.iconify
#LeftTitleButton "xpm:window-controls/black/behind.xpm" = f.raiselower
NoTitle
{
"Chromium"
"tmux-dual.URxvt"
"tmux-quad.URxvt"
"tmux-hex.URxvt"
"tmux.sh"
"Cromite"
"noT"
"noBT"
"Textosaurus"
"Torchlight"
"sir.sir"
"SirYouAreBeingHunted"
"PartyHardGame"
"Shotcut"
"Duskers"
"N/A"
"Left 4 Dead 2"
"HitmanPro.HitmanPro"
"HITMAN™"
"neovim"
"minetest"
"Counter-Strike"
"Minetest.Minetest"
"Minetest 5.7.0 [Main Menu]"
"Project Zomboid"
"Project Zomboid.Project Zomboid"
"FINAL FANTASY"
"thorium-browser.Thorium-browser"
"Thorium"
"lite-xl.lite-xl"
"Lite XL"
"GemCraft Frostb"
"GemCraft Chasing Shadows"
"blender"
"Blender"
"inkscape"
"qpwgraph"
#"ranger"
"gimp"
"hedgewars.hedgewars"
"hl_linux.hl_linux"
"Half-Life"
"Condition Zero"
"Notepadqq"
#"spacefm"
"pavucontrol"
"qjackctl"
"sxiv"
"geany"
"Geany"
"reaper"
"REAPER"
"audacious"
"cmus"
"qmmp"
"deadbeef"
"foobar2000"
"Strawberry"
"fsearch"
"ravenfield"
"Escape From Tarkov"
"EscapeFromTarkov"
"TheLongDark"
"Netherguild"
"brave"
"Pale Moon"
"Mercury"
"Waterfox"
"LibreWolf"
#"sakura"
"termTCT"
"termTCB"
"termBCT"
"termBCB"
"termBL"
"termTL"
"termBR"
"termTR"
"termTBL"
"termTTL"
"termCRB"
"termCRT"
"termCCT"
"termCCB"
"termCLB"
"termCLT"
"termRLT"
"termRLB"
"termRCT"
"termRCB"
"termYT0"
"termYT1"
"termYT2"
"termYT3"
"termYT4"
"termYT5"
"journalctl"
"termplay"
"multitail1"
"multitail2"
"icecat"
"firefox"
"falkon"
"vlc"
"mpv"
"Unity"
"TWM Icon Manager"
"WorkSpaceManager"
"virt-manager"
"Warcraft III"
"war3.exe.war3.exe"
"VSCodium"
}
#---------------------------------------------------------
# ICON MANAGER CONFIG
#---------------------------------------------------------
#ShowIconManager # activate/deactivate IM
#NoIconManagers # If you uncomment this no Windows can be found by wmctrl etc.
# Icon Manager Geometry: Size: Columns:
IconManagerGeometry "=1920x40-0-0" 20
#IconManagerGeometry "400x400-0-0" 1
UseThreeDIconManagers
SortIconManager # sorts alphabetically
#NoCaseSensitive # sort with case?
#NoIconTitle # don't put title under icons
#IconManagers
#{
# "Sakura" "=300x5+800+5" 5
# "Browsers" "400x5+100+5" 2
#}
IconManagerDontShow
{
"tint2"
"rofi"
"panel"
"TWM Icon Manager"
"WorkSpaceManager"
}
NoHighLight
{ # optional winlist. no list = no hl
"TWM Icon Manager"
"WorkSpaceManager"
"tint2"
"panel"
}
UnknownIcon "xpm:unknown.xpm"
ForceIcons
Icons
{
# "Sakura" "xpm:sakura.xpm"
# "SpaceFM" "xpm:spacefm.xpm"
# "Palemoon" "xpm:palemoon.xpm"
}
#---------------------------------------------------------
# BORDER CONFIG
#---------------------------------------------------------
UseThreeDBorders
ThreeDBorderWidth 2
Borderwidth 0
BorderShadowDepth 0
NoBorder {
"Chromium"
"tmux-dual.URxvt"
"tmux-quad.URxvt"
"tmux-hex.URxvt"
"tmux.sh"
"Cromite"
"Unity"
"noB"
"noBT"
"Textosaurus"
"Torchlight"
"sir.sir"
"SirYouAreBeingHunted"
"PartyHardGame"
"vlc"
"mpv"
"Shotcut"
"Counter-Strike"
"Left 4 Dead 2"
"neovim"
"minetest"
"Minetest.Minetest"
"Minetest 5.7.0 [Main Menu]"
"hl_linux.hl_linux"
"HitmanPro.HitmanPro"
"HITMAN™"
"Half-Life"
"Project Zomboid.Project Zomboid"
"Project Zomboid"
"thorium-browser.Thorium-browser"
"Thorium"
"lite-xl.lite-xl"
"Lite XL"
"FINAL FANTASY"
"qpwgraph"
"reaper"
"Condition Zero"
"Blender"
"Inkscape"
"brave"
"geany"
"Pale Moon"
"waterfox"
"Mercury"
"icecat"
#"firefox"
"LibreWolf"
"hedgewars.hedgewars"
#"Navigator.firefox"
"Waterfox"
"falkon"
"TWM Icon Manager"
"WorkSpaceManager"
"termTCT"
"termTCB"
"termBCT"
"termBCB"
"termBL"
"termTL"
"termBR"
"termTR"
"termTBL"
"termTTL"
"termCRB"
"termCRT"
"termCCT"
"termCCB"
"termCLB"
"termCLT"
"termRLT"
"termRLB"
"termRCT"
"termRCB"
"termYT0"
"termYT1"
"termYT2"
"termYT3"
"termYT4"
"termYT5"
"journalctl"
"termplay"
"Duskers"
"N/A"
"Counter Strike"
"ravenfield"
"Barony"
"Escape From Tarkov"
"EscapeFromTarkov"
"Netherguild"
"notepadqq"
"audacious"
"cmus"
"qmmp"
"deadbeef"
"foobar2000"
"TheLongDark"
"qjackdctl"
"QjackCtl"
"pavucontrol"
"Warcraft III"
"war3.exe.war3.exe"
"GemCraft Frostborn Wrath"
"GemCraft Chasing Shadows"
"VSCodium"
}
#---------------------------------------------------------
# WORKSPACEMANAGER CONFIG COLORS AND NAMES
# N = "Name" | MC = "ManagerColor" | MTC = "ManTextColor"
# BC = "BackgroundColor" | FC = "ForegroundColor" | RX = "RootXpm"
#---------------------------------------------------------
#ShowWorkSpaceManager
WorkSpaceManagerGeometry "144x24+640-0" 6
WorkSpaces
{
# N MC MTC BC FC RX
"workspace1" { "#FF00FF" "#BEBABE" "#121212" "white" "xpm:$HOME/Pictures/bg/bg-gray.xpm" }
"workspace2" { "#000000" "#BEBABE" "#222600" "white" "xpm:$HOME/Pictures/bg/bg-olive.xpm" }
"workspace3" { "#000000" "#BEBABE" "#282600" "white" "xpm:$HOME/Pictures/bg/bg-yorange.xpm" }
"workspace4" { "#000000" "#BEBABE" "#FFA600" "white" "xpm:$HOME/Pictures/bg/bg-brown.xpm" }
"workspace5" { "#000000" "#BEBABE" "#220000" "white" "xpm:$HOME/Pictures/bg/bg-red.xpm" }
"workspace6" { "#000000" "#BEBABE" "#FFFFFF" "white" }
}
#---------------------------------------------------------
# MOUSE POINTER CONFIG and MOUSE POINTERS (cursor = mouse pointer)
#---------------------------------------------------------
BorderResizeCursors # resize curs on border
Cursors
{
Destroy "pirate"
Frame "top_left_arrow"
Title "top_left_arrow"
Icon "top_left_arrow"
IconMgr "top_left_arrow"
Move "fleur"
Resize "fleur"
Menu "sb_left_arrow"
Button "hand2"
Wait "watch"
Select "dot"
}
#---------------------------------------------------------
# MENU CONFIG and MENUS
#---------------------------------------------------------
StayUpMenus # pin automatically?
UseThreeDMenus # 3D or not?
MenuShadowDepth 1 # how big shadow? (1 looks good)
NoMenuShadows # do U want shadows?
NoBackingStore # /which is faster,
#NoSaveUnders # \try them out!
InterpolateMenuColors # interpolate colors in multicol menus
menu "Menus"
{
"Applications" ("#000000":"#FFA600")f.title
"URXVT" !"urxvt&"
"XTerm" !"xterm&"
"" f.separator
#"Games" f.menu "games"
"Documents" f.menu "doc"
"Development" f.menu "dev"
"Audio" f.menu "audio"
"Visual" f.menu "video-image"
"Utilities" f.menu "utils"
"Networking" f.menu "network"
"System" f.menu "system"
}
menu "games"
{
# "0 A.D." !"0ad&"
# "Anomaly" !"$HOME/Documents/Scripts/$HOSTNAME/launchers/StartAnomaly.sh&"
# "Arma 3" !"wine $HOME/.local/share/Steam/steamapps/common/Arma\\ 3/arma3_x64.exe&"
# "Barony" !"$HOME/.local/share/Steam/steamapps/common/Barony/barony.x86_64&"
# "Betrayer" !"DISPLAY=:0.0 bottles-cli run -p Betrayer -b 'Betrayer' -- %u"
# "Besiege" !"DISPLAY=:0.0 $HOME/Documents/Scripts/$HOSTNAME/launchers/StartBesiege.sh"
# "Beyond All Reason" !"DISPLAY=:0.0 $HOME/Games/Beyond-All-Reason-1.1522.0.AppImage&"
# "Brigador" !"DISPLAY=:0.0 $HOME/Games/Brigador\\ Up\\ Armored\\ Edition/start.sh&"
# "Cataclysm: DDA" !"sakura -x cataclysm&"
"COD MW 1" !"cod1.sh&"
"COD MW 2" !"cod2.sh&"
"COD MW 3" !"cod3.sh&"
# "DCSS" !"$HOME/Games/dcss-0.30.1-linux-tiles.x86_64.AppImage&"
# "Diablo III" !"DISPLAY=:0.0 bottles-cli run -p 'Diablo III Launcher' -b 'Blizzard' -- %u"
"DosBox" !"dosbox&"
"Duskers" !"$HOME/.local/share/Steam/steamapps/common/Duskers/Duskers_linux.x86_64&"
"Final Fantasy" !"$HOME/Documents/Scripts/$HOSTNAME/launchers/ff1.sh&"
# "Forts" !"$HOME/Scripts/$HOSTNAME/launchers/StartForts.sh&"
# "FRICK Inc." !"DISPLAY=:0.0 $HOME/Games/FrickInc/frickInc.x86_64&"
"GemCraft - Chasing Shadows" ("#888888":"#200000")!"$HOME/Documents/Scripts/$HOSTNAME/launchers/gemcraftchasingshadows.sh&"
"GemCraft - Frostborn Wrath" ("#888888":"#120016")!"$HOME/Documents/Scripts/$HOSTNAME/launchers/gemcraftfrostbornwrath.sh&"
# "GROUND BRANCH" ("#FFA600":"#121212")!"wine $HOME/.local/share/Steam/steamapps/common/Ground\\ Branch/GroundBranch.exe&"
# "Happy Room" !"$HOME/Scripts/$HOSTNAME/launchers/StartHappyRoom.sh&"
# "Hedgewars" !"hedgewars&"
# "Minetest" !"minetest&"
# "Moonring" ("#FFA600":"#121212")!"wine $HOME/Games/Moonring/moonring.exe&"
# "MorroWind" ("#000000":"#7a602e")!"openmw-launcher&"
"Netherguild" ("red":"#000048")!"$HOME/.local/share/Steam/steamapps/common/Netherguild/Netherguild&"
# "Never Winter Nights 2" ("white":"#616aa1")!"$HOME/Games/Neverwinter\\ Nights\\ 2\\ Complete/nwn2.sh&"
# "Oblivion" ("#FFA600":"#121212")!"env LUTRIS_SKIP_INIT=1 lutris lutris:rungameid/1&"
# "OpenHV" ("#FFA600":"#121212")!"$HOME/Games/OpenHV-20230917-x86_64.AppImage&"
# "OSGG" !"osgg&"
# "Orcs Must Die!" !"wine $HOME/.local/share/Steam/steamapps/common/Orcs\\ Must\\ Die!/Build/release/OrcsMustDie.exe&"
# "Orcs Must Die! 2" !"wine $HOME/.local/share/Steam/steamapps/common/Orcs\\ Must\\ Die\\ 2/build/release/OrcsMustDie2.exe&"
# "People Playground" !"$HOME/Scripts/$HOSTNAME/launchers/StartPeopleplayground.sh&"
# "Pathfinder" !"$HOME/Scripts/$HOSTNAME/launchers/StartPathfinder.sh&"
# "Perfect Heist 2" !"$HOME/Scripts/$HOSTNAME/launchers/StartPerfectHeist2.sh&"
# "Pingus" ("#FFA600":"#121212")!"pingus&"
# "Project Zomboid" ("white":"#000012")!"$HOME/Games/Project\\ Zomboid/start.sh&"
# "Quake 2" ("#FFA600":"#121212")!"$HOME/Games/Quake\\ II/q2.sh&"
"Ravenfield" ("#FFA600":"#121212")!"$HOME/.local/share/Steam/steamapps/common/Ravenfield/ravenfield.x86_64 -nointro&"
# "ReVolt" ("white":"#460000")!"$HOME/Games/rvgl/rvgl.64&"
# "SandStorm" ("#FFA600":"#121212")!"$HOME/Scripts/$HOSTNAME/launchers/StartSandstorm.sh&"
# "Sargosian Abyss" ("black":"red")!"$HOME/Games/SargosianAbyss/The\\ Sargosian\\ Abyss.sh&"
# "Scorched Earth" !"dosbox $HOME/Games/SC/SCORCH.EXE&" #Game runs fucked up?
# "Shattered Pixel Dungeon" ("#FFA600":"#121212")!"$HOME/Games/Shattered\\ Pixel\\ Dungeon/start.sh&"
# "Sniper Ghost Warrior 3" !"env LUTRIS_SKIP_INIT=1 lutris lutris:rungameid/10&"
# "STALKER - GAMMA" ("#000000":"#607c62")!"DISPLAY=:0.0 bottles-cli run -p ModOrganizer -b 'SG'&"
# "StarCitizen" ("#FFA600":"#121212")!"bottles-cli run -p 'RSI Launcher' -b 'StarCitizen' -- %u&"
# "StarCraft II" ("#FFA600":"#121212")!"DISPLAY=:0.0 bottles-cli run -p 'StarCraft II' -b 'Blizzard' -- %u"
"Steam" ("white":"#1b2838")!"steam sol&"
# "Stone Shard" !"$HOME/Scripts/$HOSTNAME/launchers/StartStoneShard.sh&"
# "SurrounDead" !"$HOME/Scripts/$HOSTNAME/launchers/SurrounDead.sh&"
"Tarkov" ("#CC00FF":"#000012")!"tarkov&"
# "TeeWorlds" !"teeworlds&"
# "Tear Down" ("#FFA600":"#121212")!"$HOME/Scripts/$HOSTNAME/launchers/StartTearDown.sh&"
# "The Dark Mod" !"$HOME/Games/TheDarkMod/thedarkmod.x64&"
"The Long Dark" !"$HOME/.local/share/Steam/steamapps/common/TheLongDark/tld.x86_64&"
# "Torchlight I" !"wine $HOME/.local/share/Steam/steamapps/common/Torchlight/Torchlight.exe&"
# "Torchlight II" !"LD_PRELOAD=$HOME/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/x86_64-linux-gnu/libfontconfig.so.1 $HOME/.local/share/Steam/steamapps/common/Torchlight\\ II/ModLauncher.bin.x86_64&"
# "Tower Of Time" ("#FFA600":"#121212")!"$HOME/Games/Tower\\ of\\ Time/start.sh&"
# "Ur-Quan Masters" !"uqm&"
# "Veloren" ("#FFA600":"#121212")!"$HOME/.local/share/airshipper/airshipper&"
"WarCraft II" ("#FFA600":"#121212")!"$HOME/Scripts/$HOSTNAME/launchers/wc2.sh&"
"WarCraft III" ("#FFA600":"#121212")!"$HOME/Games/Warcraft\\ III/wc3.sh&"
# "Xenonauts" ("#FFA600":"#121212")!"$HOME/Games/Xenonauts/start.sh&"
# "Xonotic" ("#FFA600":"#121212")!"firejail --net=none DISPLAY=:0.0 /usr/bin/xonotic-sdl&"
# "Zorbus" ("white":"#4b5463")!"cd $HOME/Games/Zorbus ; DISPLAY=:0.0 wine $HOME/Games/Zorbus/Zorbus.exe&"
}
menu "utils"
{
"Color Picker" !"gcolor3&"
"Calculator" !"galculator&"
#"eDex" !"/opt/edex-ui/eDEX-UI.AppImage&"
"Keepassxc" !"keepassxc&"
"MELD" !"meld&"
"PCmanFM" !"pcmanfm&"
"Ranger" !"$HOME/Scripts/$HOSTNAME/launchers/ranger.sh&"
# "RegEx Testing" !"/usr/bin/com.github.artemanufrij.regextester&"
"Roccat" !"roccatkonextdopticalconfig&"
"Sakura" !"sakura --config-file $HOSTNAME -i $HOME/.local/share/icons/m0dw3rks/apps/128/sakura.png&"
"SpaceFM" !"spacefm&"
"URXVT" !"urxvt&"
"QTextPad" !"qtextpad&"
}
menu "CTWM"
{
#"Animation" f.menu "Anim"
"Restart" f.twmrc
"" f.separator
"Quit" f.quit
"Logout" !"nohup $HOME/Scripts/$HOSTNAME/session/close.sh logout&"
}
menu "doc"
{
"CoolReader" !"cr3&"
"VSCodium" !"vscodium&"
"QTextPad" !"qtextpad&"
}
menu "dev"
{
# "Unity" !"unity&"
"VSCodium" !"vscodium&"
}
menu "system"
{
"Baobab" !"env GTK_THEME=Graphite-yellow-Dark-compact baobab&"
"BTop" !"urxvt -e btop&"
"Configs" f.menu "configs"
"gnome-system-monitor" !"GTK_THEME=Graphite-yellow-Dark-compact gnome-system-monitor&"
"HTop" !"urxvt -e htop&"
"Ranger" !"$HOME/Scripts/$HOSTNAME/launchers/ranger.sh&"
"Roccat" !"roccatkonextdopticalconfig&"
"Sakura" !"sakura --config-file $HOSTNAME -i $HOME/.local/share/icons/m0dw3rks/apps/128/sakura.png&"
"URXVT" !"urxvt&"
"Virt-Manager" !"Virt-manager.sh&"
}
menu "audio"
{
"DeaDBeeF" !"deadbeef&"
"MPV" !"mpv&"
"qmmp" !"qmmp&"
"Reaper" !"reaper&"
"Sound Converter" !"soundconverter&"
"VLC" !"vlc&"
}
menu "video-image"
{
"Blender" !"blender&"
# "Color Picker" !"gcolor3&"
"GIMP" !"gimp&"
"Inkscape" !"inkscape&"
# "KDEnlive" !"kdenlive&"
"MPV" !"mpv&"
# "OBS" !"obs-studio&"
"ShotCut" !"$HOME/.local/share/bin/shotcut-linux-x86_64-240128.AppImage&"
"VLC" !"vlc&"
}
menu "network"
{
"Network Connection" !"nm-connection-editor&"
"Desk-Flow" !"desk-flow&"
"WaterFox" !"waterfox.sh&"
"Thorium" !"thorium.sh&"
"Tor-Browser" !"tor.sh 0&"
}
menu "configs"
{
"All Configs Textosaurus" !"textosaurus -n .ctwmrc .xinitrc .bashrc .env .bash_aliases .bash_profile .conkyrc .Xmodmap .Xdefaults .xbindkeysrc .imwheelrc $HOME/.config/picom.conf $HOME/.config/mimeapps.list&"
"" f.separator
".ctwmrc" !"gedit .ctwmrc&"
".xinitrc" !"gedit .xinitrc&"
".bashrc" !"gedit .bashrc&"
".env" !"gedit .env&"
".bash_aliases" !"gedit .bash_aliases&"
".bash_profile" !"gedit .bash_profile&"
".conkyrc" !"gedit .conkyrc&"
".Xmodmap" !"gedit .Xmodmap&"
".Xdefaults | .Xresources" !"gedit .Xdefaults&"
".xbindkeysrc" !"gedit .xbindkeysrc&"
".imwheelrc" !"gedit .imwheelrc&"
"Session Start" !"gedit $HOME/Scripts/$HOSTNAME/session_start.sh&"
"CTWM" f.menu "CTWM"
}
#---------------------------------------------------------
# WM DISPLAY CONFIGURATION
#---------------------------------------------------------
ForceFocus
{
"explorer.exe.explorer.exe"
"Default - Wine desktop"
"IWD2EE"
"iwd2.exe.iwd2.exe"
"tld.x86_64.tld.x86_64"
"TheLongDark"
"Icewind Dale II"
"partyhardgame.exe.partyhardgame.exe"
"PartyHardGame"
"GemCraft Frostborn Wrath"
"Project Zomboid"
"Escape From Tarkov"
"EscapeFromTarkov"
"escapefromtarkov.exe.escapefromtarkov.exe"
"sc2_x64.exe.sc2_x64.exe"
"Arma3_x64.exe"
"Arma3"
"Moonring"
"steam_app_107410.steam_app_107410"
"AnomalyDX11"
"foobar2000"
"SPT-AKI R7"
"SPT AKI"
"YAD"
"panel"
}
AlwaysOnTop
{
# "vlc"
# "VLC media player"
# "trayer"
# "panel"
"TWM Icon Manager"
"WorkSpaceManager"
# "tint2"
# "Conky"
}
OnTopPriority 1
{
"panel"
}
OnTopPriority -8
{
"Conky"
"conky"
"Trayer"
"trayer"
}
Occupy # always move this app. to the same workspace?
{
Window "corectrl" {"workspace3"}
Window "waterfox" {"workspace1"}
Window "cromite" {"workspace1"}
Window "palemoon" {"workspace1"}
Window "geany" {"workspace1"}
Window "Steam" {"workspace1"}
# Window "keepassxc" {"workspace2"}
# Window "audacious" {"workspace2"}
Window "qpwgraph" {"workspace2"}
# Window "qmmp" {"workspace2"}
# Window "deadbeef" {"workspace2"}
Window "foobar2000" {"workspace2"}
# Window "fsearch" {"workspace3"}
Window "VirtualBox" {"workspace4"}
Window "Virt-manager" {"workspace4"}
Window "barrier" {"workspace4"}
Window "deskflow" {"workspace4"}
Window "pavucontrol" {"workspace2"}
Window "qjackctl" {"workspace2"}
# Window "spacefm" {"workspace2"}
# Window "spacefm.Spacefm" {"workspace2"}
Window "termYT0" {"workspace2"}
Window "termYT1" {"workspace2"}
Window "termYT2" {"workspace2"}
Window "termYT3" {"workspace2"}
Window "termYT4" {"workspace2"}
Window "termYT5" {"workspace2"}
}
WindowRing # which windows to use when warping
#{ # if you don't list any windows
#}
WindowRingExclude # Don't include these windows i warp
{
"trayer"
"panel"
"TWM Icon Manager"
"WorkSpaceManager"
"tint2"
}
DontWarpCursorInWMap
#---------------------------------------------------------
# FUNCTION DEFINITIONS
#---------------------------------------------------------
Function "raise-move" { f.deltastop f.raise f.focus f.focus f.move } #f.forcemove
Function "raise-and-resize" { f.deltastop f.raise f.resize }
Function "ws-move-vanish1" { f.toggleoccupation "workspace1" f.vanish }
Function "ws-move-vanish2" { f.toggleoccupation "workspace2" f.vanish }
Function "ws-move-vanish3" { f.toggleoccupation "workspace3" f.vanish }
Function "ws-move-vanish4" { f.toggleoccupation "workspace4" f.vanish }
Function "ws-move-vanish5" { f.toggleoccupation "workspace5" f.vanish }
Function "ws-move-vanish6" { f.toggleoccupation "workspace6" f.vanish }
#---------------------------------------------------------
# MOUSE BUTTON FUNCTIONS
# BUTTONS : CONTEXT : FUNCTION
#---------------------------------------------------------
"0xff67" = : all : f.menu "Menus" # Show menu from keyboard menu key
#Button1 = : root : f.menu "Menus" # Show menu when clicking x root
Button1 = mod3 : w : f.move # Capslock + m1 Click to move window in incremeneted steps defined by XMoveGrid X YMoveGrid X
#Button1 = m : w : f.move # modded /usr/share/X11/xkb/symbols/pc to change caps to alt but despite it being set to Alt_R is triggers with _L so it messes with Blender
Button1 = mod4 : w : f.function "raise-and-resize" #win + button1 because alt is used by blender
Button1 = : frame : f.resize
Button1 = : t : f.function "raise-move" # M1 Click and hold title for move
Button1 = s : title : f.movetitlebar # BeOS style title drag
Button1 = c|m|s : w : f.identify # Show Ident info for things like no border/title force focus etc
#---------------------------------------------------------
# KEY FUNCTIONS
# KEYS = Altkey: CONTEXT : FUNCTION
#---------------------------------------------------------
# Escape
"0xff1b" = c|m : all : !"xkill"
"F1" = c : all : f.gotoworkspace "workspace1"
"F2" = c : all : f.gotoworkspace "workspace2"
"F3" = c : all : f.gotoworkspace "workspace3"
"F4" = c : all : f.gotoworkspace "workspace4"
"F5" = c : all : f.gotoworkspace "workspace5"
"F6" = c : all : f.gotoworkspace "workspace6"
"1" = c|s : w : f.function "ws-move-vanish1"
"2" = c|s : w : f.function "ws-move-vanish2"
"3" = c|s : w : f.function "ws-move-vanish3"
"4" = c|s : w : f.function "ws-move-vanish4"
"5" = c|s : w : f.function "ws-move-vanish5"
"6" = c|s : w : f.function "ws-move-vanish6"
"0" = c|s : w : f.occupy
"0xff61" = m : all : !"$HOME/Scripts/$HOSTNAME/screenshot.sh sa&"
"0xff61" = c : all : !"$HOME/Scripts/$HOSTNAME/screenshot.sh&"
"0xff61" = c|mod4 : all : !"$HOME/Scripts/$HOSTNAME/screenshot.sh sw&"
"Delete" = c|m : all : !"$HOME/Scripts/$HOSTNAME/launchers/cad.sh ht&"
"0x20" = mod4 : all : !"$HOME/Scripts/$HOSTNAME/launchers/rofi.sh run&"
"L" = mod4 : all : !"$HOME/Scripts/$HOSTNAME/session/scrlk.sh&"
"0x2e" = mod4 : all : !"$HOME/Scripts/$HOSTNAME/session/scrlk.sh eod&"
#"S" = mod4 : all : !"$HOME/Scripts/$HOSTNAME/launchers/xy_launch.sh e &"
#"R" = mod4 : all : !"$HOME/Scripts/$HOSTNAME/launchers/ranger.sh&"
"T" = c|m : all : !"$HOME/Scripts/$HOSTNAME/launchers/xy_launch.sh t&"
"M" = c|m : all : !"$HOME/Scripts/$HOSTNAME/launchers/xy_launch.sh m&"
"W" = mod4 : all : !"$HOME/Scripts/$HOSTNAME/launchers/rofi.sh winlist&"
#"W" = mod4 : all : !"$HOME/Scripts/$HOSTNAME/session/window_list.sh&"
#"W" = mod4 : all : !"rofi -sort -sorting-method fzf -show windowcd&"
#"W" = mod4 : all : !"$HOME/Scripts/$HOSTNAME/session/window_list.sh&"
"D" = mod4 : all : f.showbackground
"0xff1b" = c : w : f.deleteordestroy # close window
"V" = mod4 : all : !"$HOME/Scripts/$HOSTNAME/launchers/rofi.sh clipboard&"
"F9" = m | c | s : all : f.restart
# alt-tab
#"Tab" = m : all : f.warpring "next"
#"Tab" = m|s : all : f.warpring "prev"
#"Tab" = m : all : !"$HOME/Scripts/$HOSTNAME/launchers/rofi.sh winlist&"
"Right" = mod4 : w : f.jumpright "1"
"Left" = mod4 : w : f.jumpleft "1"
"Up" = mod4 : w : f.jumpup "1"
"Down" = mod4 : w : f.jumpdown "1"
"Right" = c : w : f.rightzoom
"Left" = c : w : f.leftzoom
"Up" = c : w : f.topzoom
"Down" = c : w : f.bottomzoom