__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
// The right Alt key (while pressed) chooses the next group.
partial modifier_keys
xkb_symbols "switch" {
key <RALT> {[ Mode_switch, Multi_key ]};
};
// The left Alt key (while pressed) chooses the next group.
partial modifier_keys
xkb_symbols "lswitch" {
key <LALT> {[ Mode_switch, Multi_key ]};
};
// The left Win key (while pressed) chooses the next group.
partial modifier_keys
xkb_symbols "lwin_switch" {
key <LWIN> {[ Mode_switch, Multi_key ]};
};
// The right Win key (while pressed) chooses the next group.
partial modifier_keys
xkb_symbols "rwin_switch" {
key <RWIN> {[ Mode_switch, Multi_key ]};
};
// Either Win key (while pressed) chooses the next group.
partial modifier_keys
xkb_symbols "win_switch" {
include "group(lwin_switch)"
include "group(rwin_switch)"
};
// The Menu key (while pressed) chooses the next group,
// while Shift+Menu acts as Menu.
partial modifier_keys
xkb_symbols "menu_switch" {
key <MENU> {[ Mode_switch, Menu ]};
};
// The right Ctrl key (while pressed) chooses the next group.
partial modifier_keys
xkb_symbols "rctrl_switch" {
key <RCTL> {[ Mode_switch ]};
};
// The Caps_Lock key (while pressed) chooses the next group,
// while Alt+Caps_Lock toggles CapsLock.
partial modifier_keys
xkb_symbols "caps_switch" {
key <CAPS> {[ Mode_switch, Caps_Lock ], type[group1] = "PC_ALT_LEVEL2" };
};
// Pressing the right Alt key switches to the next group.
partial modifier_keys
xkb_symbols "toggle" {
key <RALT> {[ ISO_Next_Group ]};
};
// Pressing the left Alt key switches to the next group.
partial modifier_keys
xkb_symbols "lalt_toggle" {
key <LALT> {[ ISO_Next_Group ]};
};
// Pressing both Shift keys switches to the next or previous group
// (depending on which Shift is pressed first).
partial modifier_keys
xkb_symbols "shifts_toggle" {
key <LFSH> {[ Shift_L, ISO_Prev_Group ], type[group1] = "TWO_LEVEL" };
key <RTSH> {[ Shift_R, ISO_Next_Group ], type[group1] = "TWO_LEVEL" };
};
// Pressing Caps_Lock switches to the next group,
// while Shift+Caps_Lock toggles CapsLock.
partial modifier_keys
xkb_symbols "caps_toggle" {
key <CAPS> {[ ISO_Next_Group, Caps_Lock ], type[group1] = "TWO_LEVEL" };
};
// Pressing Shift+Caps_Lock switches to the next group.
partial modifier_keys
xkb_symbols "shift_caps_toggle" {
key <CAPS> {[ any, ISO_Next_Group ], type[group1] = "TWO_LEVEL" };
};
// Pressing Alt+Space switches to the next group.
partial modifier_keys
xkb_symbols "alt_space_toggle" {
key <SPCE> {[ space, ISO_Next_Group ], type[group1] = "PC_ALT_LEVEL2" };
};
// Pressing Win+Space switches to the next group.
partial modifier_keys
xkb_symbols "win_space_toggle" {
key <SPCE> {[ space, ISO_Next_Group ], type[group1] = "PC_SUPER_LEVEL2" };
};
// Pressing Ctrl+Space switches to the next group.
partial modifier_keys
xkb_symbols "ctrl_space_toggle" {
key <SPCE> {[ space, ISO_Next_Group ], type[group1] = "PC_CONTROL_LEVEL2" };
};
// Pressing Caps_Lock selects the first group,
// pressing Shift+Caps_Lock selects the second group.
partial modifier_keys
xkb_symbols "caps_select" {
key <CAPS> {[ ISO_First_Group, ISO_Last_Group ], type[group1] = "TWO_LEVEL" };
};
// Pressing the left Win key selects the first group,
// pressing the right Win key or the Menu key selects the second group.
partial modifier_keys
xkb_symbols "win_menu_select" {
key <LWIN> {[ ISO_First_Group ]};
key <RWIN> {[ ISO_Last_Group ]};
key <MENU> {[ ISO_Last_Group ]};
};
// Pressing the left Ctrl key selects the first group,
// pressing the right Ctrl key selects the second group.
partial modifier_keys
xkb_symbols "ctrl_select" {
key <LCTL> {[ ISO_First_Group ]};
key <RCTL> {[ ISO_Last_Group ]};
};
//
// CTRL-SHIFT toggle section
//
partial modifier_keys
xkb_symbols "lctrl_lshift_toggle" {
key <LFSH> {[ Shift_L, ISO_Next_Group ], type[group1] = "PC_CONTROL_LEVEL2" };
key <LCTL> {[ Control_L, ISO_Next_Group ]};
};
partial modifier_keys
xkb_symbols "lctrl_lshift_toggle_rev" {
key <LFSH> {[ Shift_L, ISO_Prev_Group ], type[group1] = "PC_CONTROL_LEVEL2" };
key <LCTL> {[ Control_L, ISO_Prev_Group ]};
};
partial modifier_keys
xkb_symbols "rctrl_rshift_toggle" {
key <RTSH> {[ Shift_R, ISO_Next_Group ], type[group1] = "PC_CONTROL_LEVEL2" };
key <RCTL> {[ Control_R, ISO_Next_Group ]};
};
partial modifier_keys
xkb_symbols "ctrl_shift_toggle" {
include "group(lctrl_lshift_toggle)"
include "group(rctrl_rshift_toggle)"
};
partial modifier_keys
xkb_symbols "ctrl_shift_toggle_bidir" {
include "group(lctrl_lshift_toggle_rev)"
include "group(rctrl_rshift_toggle)"
};
//
// CTRL-ALT toggle section
//
partial modifier_keys
xkb_symbols "lctrl_lalt_toggle" {
key <LALT> {[ NoSymbol, ISO_Next_Group ], type[group1] = "PC_CONTROL_LEVEL2" };
key <LCTL> {[ Control_L, ISO_Next_Group ], type[group1] = "PC_ALT_LEVEL2" };
};
partial modifier_keys
xkb_symbols "lctrl_lalt_toggle_rev" {
key <LALT> {[ NoSymbol, ISO_Prev_Group ], type[group1] = "PC_CONTROL_LEVEL2" };
key <LCTL> {[ Control_L, ISO_Prev_Group ], type[group1] = "PC_ALT_LEVEL2" };
};
partial modifier_keys
xkb_symbols "rctrl_ralt_toggle" {
key <RALT> {[ NoSymbol, ISO_Next_Group ], type[group1] = "PC_CONTROL_LEVEL2" };
key <RCTL> {[ Control_R, ISO_Next_Group ], type[group1] = "PC_ALT_LEVEL2" };
};
partial modifier_keys
xkb_symbols "ctrl_alt_toggle" {
include "group(lctrl_lalt_toggle)"
include "group(rctrl_ralt_toggle)"
};
partial modifier_keys
xkb_symbols "ctrl_alt_toggle_bidir" {
include "group(lctrl_lalt_toggle_rev)"
include "group(rctrl_ralt_toggle)"
};
//
// ALT-SHIFT toggle section
//
partial modifier_keys
xkb_symbols "lalt_lshift_toggle" {
key <LALT> {[ NoSymbol, ISO_Next_Group ], type[group1] = "TWO_LEVEL" };
key <LFSH> {[ Shift_L, ISO_Next_Group ], type[group1] = "PC_ALT_LEVEL2" };
};
partial modifier_keys
xkb_symbols "lalt_lshift_toggle_rev" {
key <LALT> {[ NoSymbol, ISO_Prev_Group ], type[group1] = "TWO_LEVEL" };
key <LFSH> {[ Shift_L, ISO_Prev_Group ], type[group1] = "PC_ALT_LEVEL2" };
};
partial modifier_keys
xkb_symbols "ralt_rshift_toggle" {
key <RALT> {[ NoSymbol, ISO_Next_Group ], type[group1] = "TWO_LEVEL" };
key <RTSH> {[ Shift_R, ISO_Next_Group ], type[group1] = "PC_ALT_LEVEL2" };
};
partial modifier_keys
xkb_symbols "alt_shift_toggle" {
include "group(lalt_lshift_toggle)"
include "group(ralt_rshift_toggle)"
};
partial modifier_keys
xkb_symbols "alt_shift_toggle_bidir" {
include "group(lalt_lshift_toggle_rev)"
include "group(ralt_rshift_toggle)"
};
// Pressing the Menu key switches to the next group,
// while Shift+Menu acts as Menu.
partial modifier_keys
xkb_symbols "menu_toggle" {
key <MENU> {[ ISO_Next_Group, Menu ]};
};
// Pressing the left Win key switches to the next group.
partial modifier_keys
xkb_symbols "lwin_toggle" {
key <LWIN> {[ ISO_Next_Group ]};
};
// Pressing the right Win key switches to the next group.
partial modifier_keys
xkb_symbols "rwin_toggle" {
key <RWIN> {[ ISO_Next_Group ]};
};
// Pressing both Ctrl keys switches to the next or previous group
// (depending on which Ctrl is pressed first).
partial modifier_keys
xkb_symbols "ctrls_toggle" {
key <LCTL> {[ NoSymbol, ISO_Prev_Group ], type[group1] = "PC_CONTROL_LEVEL2" };
key <RCTL> {[ NoSymbol, ISO_Next_Group ], type[group1] = "PC_CONTROL_LEVEL2" };
};
// Pressing both Alt keys switches to the next or previous group
// (depending on which Alt is pressed first).
partial modifier_keys
xkb_symbols "alts_toggle" {
key <LALT> {[ Alt_L, ISO_Prev_Group ], type[group1] = "PC_ALT_LEVEL2" };
key <RALT> {[ Alt_R, ISO_Next_Group ], type[group1] = "PC_ALT_LEVEL2" };
};
// Pressing Alt plus AltGr switches to the next or previous group
// (depending on which one is pressed first).
partial modifier_keys
xkb_symbols "alt_altgr_toggle" {
key <LALT> {[ Alt_L, Alt_L, ISO_Prev_Group, ISO_Prev_Group ],
type[group1] = "FOUR_LEVEL" };
key <RALT> {[ ISO_Level3_Shift, ISO_Next_Group ], type[group1] = "PC_ALT_LEVEL2" };
};
// Pressing the left Shift key switches to the next group.
partial modifier_keys
xkb_symbols "lshift_toggle" {
key <LFSH> {[ ISO_Next_Group ]};
};
// Pressing the right Shift key switches to the next group.
partial modifier_keys
xkb_symbols "rshift_toggle" {
key <RTSH> {[ ISO_Next_Group ]};
};
// Pressing the left Ctrl key switches to the next group.
partial modifier_keys
xkb_symbols "lctrl_toggle" {
key <LCTL> {[ ISO_Next_Group ]};
};
// Pressing the right Ctrl key switches to the next group.
partial modifier_keys
xkb_symbols "rctrl_toggle" {
key <RCTL> {[ ISO_Next_Group ]};
};
// Pressing Alt+Caps_Lock switches to the next group.
partial modifier_keys
xkb_symbols "alt_caps_toggle" {
key <CAPS> {[ any, ISO_Next_Group ], type[group1] = "PC_ALT_LEVEL2" };
};
hidden partial modifier_keys
xkb_symbols "olpc" {
key <I219> {[ ISO_Next_Group, ISO_Prev_Group ]};
};
// Pressing the Scroll Lock key switches to the next group.
partial modifier_keys
xkb_symbols "sclk_toggle" {
key <SCLK> {[ ISO_Next_Group ]};
};
// Pressing Ctrl + the left Win key selects the first group,
// pressing Ctrl + the Menu key selects the second group.
partial modifier_keys
xkb_symbols "lctrl_lwin_rctrl_menu" {
key <LWIN> {[ Super_L, ISO_First_Group ], type[group1] = "PC_CONTROL_LEVEL2" };
key <MENU> {[ Menu, ISO_Last_Group ], type[group1] = "PC_CONTROL_LEVEL2" };
};
// Pressing Ctrl + the left Win key switches to the next group.
partial modifier_keys
xkb_symbols "lctrl_lwin_toggle" {
key <LWIN> {[ Super_L, ISO_Next_Group ], type[group1] = "PC_CONTROL_LEVEL2" };
};
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| digital_vndr | Folder | 0755 |
|
|
| fujitsu_vndr | Folder | 0755 |
|
|
| hp_vndr | Folder | 0755 |
|
|
| jolla_vndr | Folder | 0755 |
|
|
| macintosh_vndr | Folder | 0755 |
|
|
| nec_vndr | Folder | 0755 |
|
|
| nokia_vndr | Folder | 0755 |
|
|
| sgi_vndr | Folder | 0755 |
|
|
| sharp_vndr | Folder | 0755 |
|
|
| sony_vndr | Folder | 0755 |
|
|
| sun_vndr | Folder | 0755 |
|
|
| xfree68_vndr | Folder | 0755 |
|
|
| af | File | 21.75 KB | 0644 |
|
| al | File | 5.85 KB | 0644 |
|
| altwin | File | 3.58 KB | 0644 |
|
| am | File | 9.25 KB | 0644 |
|
| ancient | File | 8.27 KB | 0644 |
|
| apl | File | 50.95 KB | 0644 |
|
| ara | File | 35.2 KB | 0644 |
|
| at | File | 392 B | 0644 |
|
| au | File | 222 B | 0644 |
|
| az | File | 3.85 KB | 0644 |
|
| ba | File | 690 B | 0644 |
|
| bd | File | 3.25 KB | 0644 |
|
| be | File | 10.45 KB | 0644 |
|
| bg | File | 18.46 KB | 0644 |
|
| bqn | File | 5.18 KB | 0644 |
|
| br | File | 18.81 KB | 0644 |
|
| brai | File | 2.45 KB | 0644 |
|
| bt | File | 3.59 KB | 0644 |
|
| bw | File | 950 B | 0644 |
|
| by | File | 4.31 KB | 0644 |
|
| ca | File | 16.72 KB | 0644 |
|
| capslock | File | 2.19 KB | 0644 |
|
| cd | File | 3.88 KB | 0644 |
|
| ch | File | 6.64 KB | 0644 |
|
| cm | File | 27.29 KB | 0644 |
|
| cn | File | 36.52 KB | 0644 |
|
| compose | File | 2.43 KB | 0644 |
|
| ctrl | File | 3.85 KB | 0644 |
|
| cz | File | 22.97 KB | 0644 |
|
| de | File | 99.69 KB | 0644 |
|
| dk | File | 2.52 KB | 0644 |
|
| dz | File | 12.16 KB | 0644 |
|
| ee | File | 4.81 KB | 0644 |
|
| eg | File | 2.11 KB | 0644 |
|
| empty | File | 121 B | 0644 |
|
| epo | File | 7.47 KB | 0644 |
|
| es | File | 9.72 KB | 0644 |
|
| et | File | 2.27 KB | 0644 |
|
| eu | File | 4.9 KB | 0644 |
|
| eurosign | File | 629 B | 0644 |
|
| fi | File | 24.21 KB | 0644 |
|
| fo | File | 1.79 KB | 0644 |
|
| fr | File | 105.46 KB | 0644 |
|
| gb | File | 9.25 KB | 0644 |
|
| ge | File | 12.34 KB | 0644 |
|
| gh | File | 6.38 KB | 0644 |
|
| gn | File | 2.12 KB | 0644 |
|
| gr | File | 10.28 KB | 0644 |
|
| group | File | 9.66 KB | 0644 |
|
| hr | File | 2.66 KB | 0644 |
|
| hu | File | 23.64 KB | 0644 |
|
| id | File | 13.61 KB | 0644 |
|
| ie | File | 17.55 KB | 0644 |
|
| il | File | 15.74 KB | 0644 |
|
| in | File | 115.73 KB | 0644 |
|
| inet | File | 78.64 KB | 0644 |
|
| iq | File | 633 B | 0644 |
|
| ir | File | 11.51 KB | 0644 |
|
| is | File | 10.87 KB | 0644 |
|
| it | File | 16.58 KB | 0644 |
|
| jp | File | 7.23 KB | 0644 |
|
| ke | File | 4.41 KB | 0644 |
|
| keypad | File | 23.35 KB | 0644 |
|
| kg | File | 6.21 KB | 0644 |
|
| kh | File | 3.35 KB | 0644 |
|
| kpdl | File | 3.32 KB | 0644 |
|
| kr | File | 1.17 KB | 0644 |
|
| kz | File | 16.04 KB | 0644 |
|
| la | File | 4.71 KB | 0644 |
|
| latam | File | 9.83 KB | 0644 |
|
| latin | File | 14.4 KB | 0644 |
|
| level2 | File | 209 B | 0644 |
|
| level3 | File | 4.55 KB | 0644 |
|
| level5 | File | 4.1 KB | 0644 |
|
| lk | File | 7.64 KB | 0644 |
|
| lt | File | 20.02 KB | 0644 |
|
| lv | File | 20 KB | 0644 |
|
| ma | File | 12.46 KB | 0644 |
|
| md | File | 4.83 KB | 0644 |
|
| me | File | 1.67 KB | 0644 |
|
| mk | File | 3.04 KB | 0644 |
|
| ml | File | 2.03 KB | 0644 |
|
| mm | File | 16.85 KB | 0644 |
|
| mn | File | 4.21 KB | 0644 |
|
| mt | File | 5.54 KB | 0644 |
|
| mv | File | 2.49 KB | 0644 |
|
| my | File | 5.41 KB | 0644 |
|
| nbsp | File | 2.62 KB | 0644 |
|
| ng | File | 6.15 KB | 0644 |
|
| nl | File | 6.78 KB | 0644 |
|
| no | File | 12.14 KB | 0644 |
|
| np | File | 6.17 KB | 0644 |
|
| nz | File | 698 B | 0644 |
|
| olpc | File | 930 B | 0644 |
|
| parens | File | 389 B | 0644 |
|
| pc | File | 2.66 KB | 0644 |
|
| ph | File | 74.24 KB | 0644 |
|
| pk | File | 19.85 KB | 0644 |
|
| pl | File | 27.29 KB | 0644 |
|
| pt | File | 11.5 KB | 0644 |
|
| ro | File | 11.08 KB | 0644 |
|
| rs | File | 14.82 KB | 0644 |
|
| ru | File | 78.48 KB | 0644 |
|
| rupeesign | File | 131 B | 0644 |
|
| se | File | 15.74 KB | 0644 |
|
| shift | File | 2.07 KB | 0644 |
|
| si | File | 625 B | 0644 |
|
| sk | File | 6.56 KB | 0644 |
|
| sn | File | 2.18 KB | 0644 |
|
| srvr_ctrl | File | 1.76 KB | 0644 |
|
| sy | File | 4.67 KB | 0644 |
|
| terminate | File | 199 B | 0644 |
|
| tg | File | 3.66 KB | 0644 |
|
| th | File | 7.25 KB | 0644 |
|
| tj | File | 9.64 KB | 0644 |
|
| tm | File | 1.48 KB | 0644 |
|
| tr | File | 27.44 KB | 0644 |
|
| trans | File | 16.19 KB | 0644 |
|
| tw | File | 3.26 KB | 0644 |
|
| typo | File | 4.39 KB | 0644 |
|
| tz | File | 3.27 KB | 0644 |
|
| ua | File | 15.88 KB | 0644 |
|
| us | File | 115.29 KB | 0644 |
|
| uz | File | 3.1 KB | 0644 |
|
| vn | File | 6 KB | 0644 |
|
| za | File | 2.19 KB | 0644 |
|