-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.xbindkeysrc
More file actions
1862 lines (1236 loc) · 50 KB
/
.xbindkeysrc
File metadata and controls
1862 lines (1236 loc) · 50 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
# ~/.xbindkeys
###############!!!!!!!!!!!!!!!!!!! current forbidden keys:
#
#
# we don't use mod4+h or mod4+l... because they conflict other programs or my other programs.
# _)
# W39 Sat, 27 at 05:23
# ---START------------------------------------------------------------
# ""Requirements.txt""
# [[]]
# DESCRIPTION:
# Why?:
# --------------------------------------------------------------------
# requirements:
# - xbindkeys
# - xdotool
# - wmctrl
# - rofi
# - alacritty (or other terminal emulator)
# - skippy-xd
# - keyd
# - flameshot
# - scrot
# - xclip
# - wgetpaste
# - iupload (custom script)
# - copyq
# - picom
# - jgmenu
# - pavucontrol
# - xfce4-appfinder
# - Custom scripts in ~/scripts/ddesk/ directory
# - Custom binaries in ~/.local/bin/
# - Japanese keyboard layout support (for mouse movement keys)
# - Multiple monitor setup (for some positioning scripts)
# - Openbox window manager (implied by some comments)
# - Artha/GoldenDict-ng (for dictionary functions)
# - brightness-controller (custom tool)
# --------------------------------------------------------------------
# ""Requirements.txt""
# ---END--------------------------------------------------------------
# For the benefit of emacs users: -*- shell-script -*-
###########################
# xbindkeys configuration #
###########################
#
# Version: 1.8.7
#
# If you edit this file, do not forget to uncomment any lines
# that you change.
# The pound(#) symbol may be used anywhere for comments.
#
# To specify a key, you can use 'xbindkeys --key' or
# 'xbindkeys --multikey' and put one of the two lines in this file.
#
# The format of a command line is:
# "command to start"
# associated key
#
#
# A list of keys is in /usr/include/X11/keysym.h and in
# /usr/include/X11/keysymdef.h
# The XK_ is not needed.
#
# List of modifier:
# Release, Control, Shift, Mod1 (Alt), Mod2 (NumLock),
# Mod3 (CapsLock), Mod4, Mod5 (Scroll).
#
#
# ==================================== Exceptions ============================
# ========= FROM ME ========
# EXCEPTIONS: The following can't be used sadly because of reasons in the workflow:
# Mod4 + control+ Shift + alt + u this can't be used <-- openbox/keyd change that if you want to use it
# =============================================================================
# "xdotool key F24"
# m:0x0 + c:202
# ---- The far away problamaic problamaic key ----
# it's problematic because you can't pair it with other keys... and it's not in
# keyd
# I only have this key. I tried to pair it it didn't work. I guess we actually make it
# and explorer because it was just a useless button
# "dolphin"
# XF86Explorer
#
# "dolphin"
# Hyper_L
# ---- The far away problamaic problamaic keyEND ----
"killall xbindkeys && sleep 0.1 && xbindkeys &"
Mod4 + Shift + control + r
# [Do Not] put in [openbox] play it safe. same with W-Left and W-Right
"/home/dex/scripts/bash/window_rules/restart_win_pos.sh"
Mod4 + control + r
# The release modifier is not a standard X modifier, but you can
# use it if you want to catch release events instead of press events
# By defaults, xbindkeys does not pay attention with the modifiers
# NumLock, CapsLock and ScrollLock.
# Uncomment the lines above if you want to pay attention to them.
#keystate_numlock = enable
# keystate_capslock = enable
#keystate_scrolllock= enable
# Examples of commands:
# "xbindkeys_show"
# control+Shift + q
# set directly keycode (here control + f with my keyboard)
# "xterm"
# c:41 + m:0x4
# specify a mouse button
# "xterm"
# control + b:2
#"xterm -geom 50x20+20+20"
# Shift+Mod2+alt + s
#
## set directly keycode (here control+alt+mod2 + f with my keyboard)
#"xterm"
# alt + c:0x29 + m:4 + mod2
#
## Control+Shift+a release event starts rxvt
#"rxvt"
# release+control+Shift + a
#
## Control + mouse button 2 release event starts rxvt
#"rxvt"
# Control + b:2 + Release
# Toggle Caps Lock state when F24 (remapped Caps Lock, now Mod3) + c is pressed
# pressed
# "/home/dex/scripts/hotkeys/capslock_on_of"
# Mod3 + t
# "/home/dex/scripts/ddesk/nothing/nvim_capslock_send_at_for_macro"
# Mod3 + m
# ---- rofi ----
# Yes I use 2 pannels
# "xfce4-popup-whiskermenu --pointer"
# alt + F1
# W-w
# "scripts/ddesk/nothing/rofi_win_w_current_desktop_windows.sh"
# Mod4 + w
# W-q
# "$HOME/scripts/ddesk/nothing/rofi_smart_window_switcher_works_with_Mod4_grave.sh"
# Mod4 + q
# "zsh -i -c 'rofi -show run'"
# Mod4 + r
# ---- rofi END----
"$HOME/scripts/ddesk/nothing/rofi_smart_window_switcher_works_with_Mod4_grave.sh"
Mod4 + Shift + q
# ----Scroll_Lock screwing around ----
# Just testing new Scrol_Lock Mod4
# Mod5 works wow Mod5 is scroll_lock and it works... and F24 I made it Mod4 which is escape
# and capslock now is on daemon so it's not affected lol really good setup...
# and the reloads are easy to do as well not that bad.
"$HOME/scripts/ddesk/nothing/rofi_smart_window_switcher_works_with_Mod4_grave.sh"
Mod5 + Shift + q
"$HOME/scripts/ddesk/nothing/rofi_smart_window_switcher_works_with_Mod4_grave.sh"
alt+F5
"/home/dex/scripts/ddesk/nothing/rofi_alt_per_tab_scuffed.bak"
alt+F6
"/home/dex/scripts/ddesk/nothing/rofi_alt_per_tab_scuffed.bak"
Mod5 + Shift + w
"/home/dex/scripts/ddesk/nothing/rofi_alt_per_tab_scuffed.bak"
Mod4 + Shift + control + w
"xdotool mousemove 900 600"
Mod5 + Shift + minus
"xdotool mousemove 2600 400"
Mod5 + Shift + equal
# ----Scroll_Lock screwing around END ----
# ---- zen browser related ----
# sadly it doesn't work in nvim... maybe I should do something to make it check if it's in nvim or not I'm not sure I'm too lazy
# and to be honest most of the time i'm not using this thing to be honest with you
# it's limited to mouse but it seems to work in Sublime and obsidian and browser
# Most of the time you want to be highlighting with mouse when you are in like copyq like edit and highlihgt then yeah... tbh I should make it copy maybe? like based on clipboard that would be better I think.
# "/home/dex/scripts/ddesk/nothing/open_highlighedText_inNewTab_inZenBrowser.sh"
# This is stupid I never ever use it so fuck it I guess
# "/home/dex/scripts/ddesk/nothing/open_highlighedText_inNewTab_inFirefoxBrowser.sh"
# Mod4 + z
#-- this one opens in browser from clipboard...
# "/home/dex/scripts/ddesk/nothing/open_fromClipboard_inNewTab_inZenBrowser.sh"
# Mod4 + alt + z
# ---- zen browser related END----
# ---[MOUSE] [ mouse movements via keyboard, capslock+apphabit and scrolling ] END-----
#1 ----- Scroll wheels movements-------
"xdotool click 5"
Katakana
"xdotool click 4"
XF86TouchpadToggle
"xdotool click 7"
Hiragana
"xdotool click 6"
Hiragana_Katakana
#1 END----- Scroll wheels movements END-------
# yen
# capslock + h
"xdotool mousemove_relative -- -20 0"
m:0x0 + c:132
# muhenkan
# capslock + j
"xdotool mousemove_relative -- 0 20"
Muhenkan
# m:0x0 + c:102
# kpjpcomma
# capslock + k
"xdotool mousemove_relative -- 0 -20"
m:0x0 + c:103
# ro
# capslock + l
"xdotool mousemove_relative -- 20 0"
m:0x0 + c:97
# END---[MOUSE] [ mouse movements via keyboard, capslock+apphabit and scrolling ] END-----
# --[]-- [ hints ] ----
# [GIVE_UP] I gave up on this hints... it's not that good... I should really invest some time into something like
# vimium everywhere or whatever wmfocus or whatever.... I gave up on this... I'll use this hotkey some where else I think
# scuffed hints for now and also needs picom lol
# "scripts/ddesk/nothing/hint-focus.py"
# Mod4 + Shift + w
# END--[]-- [ hints ] END----
# ---[ WINDOWS ]---- [ resizing windows ] ---
# Window hider, this is a toggle.
# hides and unhides if it's hidden for the current active window.
# the script is simple
"~/.local/bin/window-hider.sh"
control+alt+h
# Reduce width (left)
"~/scripts/ddesk/resize_window.sh h -40"
Mod4 + control + alt + h
# Increase width (right)
"scripts/ddesk/resize_window.sh h 40"
Mod4 + control + alt + l
# # Decrease height (up)
"scripts/ddesk/resize_window.sh v -40"
Mod4 + control + alt + k
# Increase height (down)
"scripts/ddesk/resize_window.sh v 40"
Mod4 + control + alt + j
# Reduce width (left)
"~/scripts/ddesk/resize_window.sh h -40"
Mod5 + +Shift + s
# Increase width (right)
"scripts/ddesk/resize_window.sh h 40"
Mod5 + Shift + f
# # Decrease height (up)
"scripts/ddesk/resize_window.sh v -40"
Mod5 + Shift + e
# Increase height (down)
"scripts/ddesk/resize_window.sh v 40"
Mod5 + Shift + d
# Reduce width (left)
"$HOME/scripts/ddesk/move_window2.sh x -40"
Mod5 + Shift + h
# Increase width (right)
"$HOME/scripts/ddesk/move_window2.sh x 40"
Mod5 + Shift + l
# # Decrease height (up)
"$HOME/scripts/ddesk/move_window2.sh y -40"
Mod5 + Shift + k
# Increase height (down)
"$HOME/scripts/ddesk/move_window2.sh y 40"
Mod5 + Shift + j
# END---[ WINDOWS ]---- [ resizing windows ] END---
# ----[TESTS]------ [ f7 test key ] ----
# testing the stupid window position thing W32 Tue, 12 at 14:23
"$HOME/scripts/ddesk/testkeyf7.sh"
Mod5 + Shift + F7
# window class picker W32 Tue, 12 at 14:23
"~/scripts/esentials/gitClassOfActiveWindow.sh"
Mod5 + Shift + F9
# END----[TESTS]------ [ f7 test key ] END----
# Increase height (down)
# "xdotool keyup control alt ; xdotool key ctrl+alt+Down"
# Control + Alt + q
#
# "xdotool key Right"
# Mod4 + l
"wmctrl -r :ACTIVE: -e 0,1921,220,1362,732"
Mod4+shift+l
"wmctrl -r :ACTIVE: -e 0,49,86,1865,992"
Mod4+shift+ h
"wmctrl -r :ACTIVE: -e 0,0,2,1917,1076"
alt + F11
"wmctrl -r :ACTIVE: -e 0,52,86,1865,992"
Mod4 + Left
"wmctrl -r :ACTIVE: -e 0,1921,220,1314,732"
Mod4 + Right
"xdotool set_desktop --relative -- 1"
Control + Alt + Right
"xdotool set_desktop --relative -- 1"
Control + Alt + d
"xdotool set_desktop --relative -- -1"
Control + Alt + Left
"xdotool set_desktop --relative -- -1"
Control + Alt + a
"xdotool set_desktop --relative -- -10"
Control + Alt + Up
"xdotool set_desktop --relative -- -10"
Control + Alt + w
"xdotool set_desktop --relative -- -10"
Mod4 + w
"xdotool set_desktop --relative -- 10"
Mod4 + s
# "xdotool set_desktop --relative -- 10"
# Control + Alt + Down
"xdotool set_desktop --relative -- 10"
Control + Alt + s
"xdotool set_desktop --relative -- 10"
Mod4 + Alt + s
# ---- testing win+hjkl for arrows END----
# "/home/dex/scripts/ddesk/nothing/capslock_neovim_copy_hotkey"
# Mod3 + y
#
# "/home/dex/scripts/ddesk/nothing/capslock_neovim_past_hotkey"
# Mod3 + p
# "/home/dex/Desktop/ddesk/nothing/capslock_doubledots_w_save"
# Mod3 + w
# "/home/dex/Desktop/ddesk/nothing/capslock_doubledots_q_quit"
# Mod3 + q
# Method1
# "/home/dex/Desktop/ddesk/nothing/capslock_movewindow_away_method2"
# "/home/dex/scripts/ddesk/nothing/capslock_movewindow_away"
# Shift + Mod3 + a
# "/home/dex/Desktop/ddesk/nothing/capslock_terminal_move_big"
# Control + Mod3 + a
# ---- Scroll_Lock which is now Mod5 ----
"/home/dex/scripts/ddesk/nothing/capslock_movewindow_to_mouse_pos"
Mod5 + Shift + a
# "/home/dex/scripts/ddesk/nothing/capslock_movewindow_to_mouse_pos"
# Mod6 + a
# ---- Scroll_Lock which is now Mod5 END----
# "/home/dex/scripts/ddesk/nothing/capslock_movewindow_to_mouse_pos"
# F13 + a
# ----- Send windows to Desktops With NUMPADS numbers (rarely use) -----
"xdotool set_desktop_for_window $(xdotool getactivewindow) 0 ; sleep 0.1 ; sleep 0.1 ; xdotool mousemove --window $(xdotool getactivewindow) --polar 0 0"
Mod4 + KP_1
"xdotool set_desktop_for_window $(xdotool getactivewindow) 1 ; sleep 0.1 ; sleep 0.1 ; xdotool mousemove --window $(xdotool getactivewindow) --polar 0 0"
Mod4 + KP_2
"xdotool set_desktop_for_window $(xdotool getactivewindow) 2 ; sleep 0.1 ; sleep 0.1 ; xdotool mousemove --window $(xdotool getactivewindow) --polar 0 0"
Mod4 + KP_3
"xdotool set_desktop_for_window $(xdotool getactivewindow) 3 ; sleep 0.1 ; sleep 0.1 ; xdotool mousemove --window $(xdotool getactivewindow) --polar 0 0"
Mod4 + KP_4
"xdotool set_desktop_for_window $(xdotool getactivewindow) 4 ; sleep 0.1 ; sleep 0.1 ; xdotool mousemove --window $(xdotool getactivewindow) --polar 0 0"
Mod4 + KP_5
"xdotool set_desktop_for_window $(xdotool getactivewindow) 5 ; sleep 0.1 ; sleep 0.1 ; xdotool mousemove --window $(xdotool getactivewindow) --polar 0 0"
Mod4 + KP_6
"xdotool set_desktop_for_window $(xdotool getactivewindow) 6 ; sleep 0.1 ; sleep 0.1 ; xdotool mousemove --window $(xdotool getactivewindow) --polar 0 0"
Mod4 + KP_7
"xdotool set_desktop_for_window $(xdotool getactivewindow) 7 ; sleep 0.1 ; sleep 0.1 ; xdotool mousemove --window $(xdotool getactivewindow) --polar 0 0"
Mod4 + KP_8
"xdotool set_desktop_for_window $(xdotool getactivewindow) 8 ; sleep 0.1 ; sleep 0.1 ; xdotool mousemove --window $(xdotool getactivewindow) --polar 0 0"
Mod4 + KP_9
"xdotool set_desktop_for_window $(xdotool getactivewindow) 9 ; sleep 0.1 ; sleep 0.1 ; xdotool mousemove --window $(xdotool getactivewindow) --polar 0 0"
Mod4 + KP_0
# ----- Send windows to Desktops With NUMPADS numbers (rarely use) END -----
# ---- Toggle Omnipresent on and off with decimal or also called delete ----
"/home/dex/scripts/ddesk/nothing/sticky_window_toggle"
Mod4 + KP_Decimal
"/home/dex/scripts/ddesk/nothing/sticky_window_toggle"
Mod4 + KP_Delete
# This just doesn't wanna work on openbox... not the execute script and not the ToggleShowOnAllDesktops non of them want to work. so fuck it make it on xbindkeys for now for now.
"/home/dex/scripts/ddesk/nothing/sticky_window_toggle"
control + alt + k
# ---- Toggle Omnipresent on and off with decimal or also called delete END ----
# Maximize active window
# "wmctrl -r :ACTIVE: -b add,maximized_vert,maximized_horz"
# Mod4 + Up
# Unmaximize (restore) active window
# "wmctrl -r :ACTIVE: -b remove,maximized_vert,maximized_horz"
# Mod4 + Down
# "/home/dex/Desktop/ddesk/nothing/nvim_c-h_c-left"
# control + h
# "rm -f /tmp/ctrl_h_held.flag ; xdotool keyup ctrl+Left"
# release + control + h
# "xdotool windowminimize $(xdotool getactivewindow)"
# Shift + Mod4 + Down
# ----- Rofi Window Switcher with Prefill -----
# Open Rofi for window switching, pre-filled with "desktop 1 "
# _)
# W40 Wed, 01 at 07:42
# ---START------------------------------------------------------------
# ""flameshot hotkeys""
# --------------------------------------------------------------------
# [[]]
# DESCRIPTION:
# Why?:
# Solution?:
# --------------------------------------------------------------------
# [flameshot] classic simple
"flameshot gui"
Print
# [flameshot] fancy no brain easy select menu with rofi
"~/.local/bin/screenshot-menu"
Mod4 + Print
"flameshot gui --pin"
control + Print
"flameshot gui --pin"
control + Print
# --------------------------------------------------------------------
# ""flameshot hotkeys""
# ---END--------------------------------------------------------------
# _file manager)
# W46 Tue, 11 at 20:15
# ---START------------------------------------------------------------
# ""file manager""
# --------------------------------------------------------------------
# [[]]
# DESCRIPTION:
# Why?:
# Solution?:
# --------------------------------------------------------------------
# "thunar"
# Mod4 + e # moved to openbox (WM) becaue it's faster
# Cannot run this on openbox (WM), the hotkey mod4 + alt + e done't work.
# Open recent files
# Ergo, use `escape + r`, the `r` in it stands for recent (ez to remember).
"thunar 'recent:///'"
Mod4 + Alt + e
# Open Trash files, opens /home/$USER/.local/share/Trash/files in file manager.
# Ergo, use `escape + t`, the `t` in it stands for trash (ez to remember).
"thunar 'trash:///'"
Mod4 + shift + control + Alt + e
# --------------------------------------------------------------------
# ""file manager""
# ---END--------------------------------------------------------------
"/home/dex/scripts/ddesk/]/]mouse_focus_toggle"
Mod4 + control + Shift + f
"scrot -s '/home/dex/Pictures/Screenshots/screenshot_%Y-%m-%d_%H-%M-%S.png'"
control + Shift + KP_Subtract
"flameshot gui --path '/home/dex/fleet/screenshot_$(date +%Y-%m-%d_%H-%M-%S).png'"
control + Shift + Print
#"# I can't do Mod4+Shift+f it's for switching windows for the _c_"
# Mod4 + Shift + f
"scrot --multidisp --silent '/home/dex/Pictures/Screenshots/screenshot_%Y-%m-%d_%H-%M-%S.png'"
control + Print
"scrot -s -o - | xclip -selection clipboard -t image/png"
Shift + Print
# W-f
"wmctrl -r :ACTIVE: -b add,above"
Mod4 + n
"flameshot gui --pin -s"
control + alt + f
# C-A-u
# usage: iupload is a script I made in .local/bin/iupoad. it's in
# ~/scripts/tools/python/imgur it's exactly in:
# ~/scripts/tools/python/imgur/venv/bin/imgur-uploader
# TIP: you can also run iupload with arguments. read .local/bin/iupload for
# more info
"iupload"
Control + alt + u
# _)
# W44 Sun, 02 at 17:13
# ---START------------------------------------------------------------
# ""warpd""
# --------------------------------------------------------------------
# [[]]
# DESCRIPTION:
# Why?:
# Solution?:
# --------------------------------------------------------------------
"warpd --hint"
Mod4 + alt + x
"warpd --grid"
Mod4 + alt + g
"warpd --hint"
Mod4 + alt + x
"warpd --normal"
Mod4 + alt + c
"warpd --screen"
Mod4 + alt + z
# --------------------------------------------------------------------
# ""warpd""
# ---END--------------------------------------------------------------
"~/.local/bin/screenshot-menu"
control + Shift + alt + f
"flameshot gui -c"
Mod4 + alt + f
"/home/dex/scripts/ddesk/nothing/fleet.note.sh"
control + Mod4 + alt + f
"xclip -o -selection clipboard > /tmp/mypaste.txt && wgetpaste -r -C /tmp/mypaste.txt && rm /tmp/mypaste.txt"
Mod4 + control + Shift + p
# "scrot -s -o - | xclip -selection clipboard -t image/png"
# Mod3+ x
"flameshot gui -s --pin"
Alt + control + Shift + Print
# ---- Tiling_Kida Cylcining ----
# W-d
"/home/dex/scripts/ddesk/nothing/tiling_window_manager_simulator.sh reverse"
Mod4+control+d
"/home/dex/scripts/ddesk/nothing/tiling_window_manager_simulator.sh"
Mod4+control+s
# "xdotool keyup super ; xdotool key Control+Alt+s"
# Mod4 + s
#
# "xdotool keyup super ; xdotool key Control+Alt+w"
# Mod4 + w
# _)
# W40 Mon, 29 at 09:25
# ---START------------------------------------------------------------
# ""quick Cycle between windows of the same class regardless of desktop""
# [[]]
# DESCRIPTION:
# Why?:
# --------------------------------------------------------------------
"sleep 0.1;~/scripts/ddesk/nothing/cycle_windows_same_class_alt_grave.sh"
Alt + grave
"~/scripts/ddesk/nothing/cycle_windows_same_class_alt_grave.sh reverse"
alt+Shift+grave
# --------------------------------------------------------------------
# ""quick Cycle between windows of the same class regardless of desktop""
# ---END--------------------------------------------------------------
# ---- Tiling_Kida Cylcining END ----
# ---- Terminal Summuning ---
# "scripts/ddesk/tmux/newTerm.sh"
# control+ alt + Tab
# "scripts/ddesk/tmux/newTerm.sh"
# Mod4 + semicolon
# "sleep 0.4 ; xdotool key down down down down"
# Mod4 + j
# "sleep 1 ; xdotool key --clearmodifiers left"
# Mod4 + h
"scripts/ddesk/tmux/newTerm.sh"
control + alt + Shift + t
# "alacritty -e xdotool set_desktop_for_window $(xdotool getactivewindow) -1"
"scripts/ddesk/tmux/stickyTerm.sh"
mod4 + control + alt + Shift + t
# "sleep 0.1 ; xdotool key Enter"
# Mod4 + m
#-- this is just a thing for easy reach when i'm doing like
"sleep 0.1 ; xdotool key --clearmodifiers Enter"
Mod4 + a
# "alacritty"
# control+ alt + grave
# run alacritty terminal and move to it
# "scripts/ddesk/nothing/alacrity_F2_tmuxSeachMove_withTmuxSesionizer.sh"
# control + grave
# "kitty"
# control + F1
# "scripts/ddesk/nothing/alacrity_grave_move_mouse_center_to_center.sh"
# control + F2
# "alacritty"
# control + F3
# ---- Terminal Summuning END ---
# START--[MOVEMENTS]-- [ activating windows ] START------
# DESCRIPTION:
# ------ Frequently Used --------
# _)
# ---START------------------------------------------------------------
# ""Always on 2nd monitor""
# [[]]
# DESCRIPTION:
# Why?: Because if I enabled the detect which monitor this thing is on.
# it will not work well sadly. So things that are always on 2nd
# monitor I'll just deal with them with `wmctrl -a _<leter>` and
# that's it really... until I understand what the heck is causing
# the problem
# --------------------------------------------------------------------
# so study the scripts that are in play in # "/home/dex/scripts/esentials/SaveCurrentDesktop.sh && wmctrl -a _a_ && /home/dex/scripts/esentials/CheckIf-SaveCurrentDesktop.sh-ChangedIfYesMakeItPrevious.sh"
# and then see if you can make something universal or something or tbh... why not just make each like window activation is make it it's own like script why not... idk you do you
# btop yeah I get it _a_ is not btop but you know I like _a_ because it's close. you can think of it as in like aprocess
# "/home/dex/scripts/esentials/SaveCurrentDesktop.sh && wmctrl -a _a_ && /home/dex/scripts/esentials/CheckIf-SaveCurrentDesktop.sh-ChangedIfYesMakeItPrevious.sh"
"wmctrl -a _a_"
Mod4 + Shift + a
# free
# "wmctrl -a 'Recent - Thunar'"
# Mod4 + alt + r
# Switched to this
"wmctrl -a 'Recent - Thunar'"
Mod4 + shift + r
"wmctrl -a '_todo_ -'"
Mod4 + shift + t
"wmctrl -a _a_"
Mod5 + a
# Sublime
"wmctrl -x -a Sublime"
Mod4 + Shift + s
"wmctrl -x -a Sublime"
Mod5 + s
# Copyq
"wmctrl -x -a copyq"
Mod4 + Shift + d
"wmctrl -a 'DesktopSwitch Settings' "
Mod4 + control + d
"wmctrl -x -a copyq"
Mod5 + d
# [TMUX] conf
"wmctrl -a _f_"
Mod4 + Shift + f
"wmctrl -a _f_"
Mod5 + f
# _2)
# ---START------------------------------------------------------------
# W39 Thu, 25 at 07:11
# ""Dictionary solutions""
# [[COMPREHENSION]]
# DESCRIPTION: These are solutions to help me look up words when I'm reading the
# docs or parts of the docs using man or tldr or on the website.
# It can also help me in English.
# Why?: To help and speed up comprehension of the docs
# --------------------------------------------------------------------
# Arth a lightweight dict (50mb).
# discription: You can select any text and hit C-A-W and it will open Artha if
# it's on. with the word...etc.
# Attention: If some words don't work try your luck with dict or goldendict.
# If nothing on goldendict then go to google and use websites such as
# wordhipo, Dictionary.com, Thesaurus.com, Collins Dictionary,
# Cambridge Dictionary, OneLook, oxford...etc.
#
# M-S-g
# really lightweight dict. you can select any text and hit C-A-W and it will work
# alternatively you can click the hotkey corresponding to goldendict. or in temrinal type `dict <word>`
"wmctrl -a Artha"
Mod4 + Shift + g
"wmctrl -a KMagnifier"
Mod4 + control + Shift + k
"wmctrl -a KMagnifier"
Mod5 + n
"wmctrl -a _j_"
Mod4 + Shift + j
# goldendict
# C-A-g
"wmctrl -a GoldenDict-ng"
Control + alt + g
"wmctrl -a GoldenDict-ng"
Mod5 + alt + g
# --------------------------------------------------------------------
# ""Dictionary solutions""
# ---END--------------------------------------------------------------
#gnome-clocks
# "wmctrl -x -a 'org.gnome.clocks'"
"/home/dex/scripts/esentials/SaveCurrentDesktop.sh && wmctrl -x -a 'org.gnome.clocks' && /home/dex/scripts/esentials/CheckIf-SaveCurrentDesktop.sh-ChangedIfYesMakeItPrevious.sh"
Mod4 + Shift + c
# "wmctrl -x -a 'org.gnome.clocks'"