@wistantkode/dotfiles 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/aliases.sh +14 -0
- package/aliases.zsh +20 -0
- package/bin/cli.mjs +68 -0
- package/github.sh +33 -0
- package/gitignore +122 -0
- package/gitmessage +14 -0
- package/myKDEshorcuts.kksrc +421 -0
- package/package.json +35 -0
- package/pnpm.sh +74 -0
- package/protocols/ASSIST.md +64 -0
- package/protocols/COMMIT.md +82 -0
- package/protocols/DOTFILES.md +52 -0
- package/protocols/INIT.md +37 -0
- package/protocols/PR.md +50 -0
- package/protocols/REFACTOR.md +189 -0
- package/protocols/RELEASE.md +89 -0
- package/protocols/RODIN.md +101 -0
- package/protocols/SECURITY.md +36 -0
- package/protocols/TEST.md +42 -0
- package/protocols/UI.md +37 -0
- package/protocols/_INDEX.md +37 -0
package/aliases.sh
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# --- ELITE PROTOCOL ALIASES (POSIX COMPLIANT) ---
|
|
2
|
+
|
|
3
|
+
# Navigation
|
|
4
|
+
alias ra='cat .protocols/ASSIST.md'
|
|
5
|
+
alias ri='cat .protocols/_INDEX.md'
|
|
6
|
+
alias rs='cat .protocols/SECURITY.md && pnpm audit'
|
|
7
|
+
|
|
8
|
+
# Git Refined
|
|
9
|
+
alias gc='git commit'
|
|
10
|
+
alias gca='echo "RODIN ERROR: git add . is forbidden. Use atomic staging." && false'
|
|
11
|
+
alias gl='git log --graph --pretty=format:"%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset" --abbrev-commit'
|
|
12
|
+
|
|
13
|
+
# Calibration Hook (Zsh specific - for POSIX compat, use manual trigger or wrapper)
|
|
14
|
+
# chpwd is Zsh-specific. For other shells, you can use a manual 'ra' check.
|
package/aliases.zsh
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# --- ELITE PROTOCOL ALIASES (CYBER-PREMIUM) ---
|
|
2
|
+
|
|
3
|
+
# Navigation
|
|
4
|
+
alias ra='cat .protocols/ASSIST.md'
|
|
5
|
+
alias ri='cat .protocols/_INDEX.md'
|
|
6
|
+
alias rs='cat .protocols/SECURITY.md && pnpm audit'
|
|
7
|
+
|
|
8
|
+
# Git Refined
|
|
9
|
+
alias gc='git commit'
|
|
10
|
+
alias gca='echo "RODIN ERROR: git add . is forbidden. Use atomic staging." && false'
|
|
11
|
+
alias gl='git log --graph --pretty=format:"%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset" --abbrev-commit'
|
|
12
|
+
|
|
13
|
+
# Calibration Hook (Zsh)
|
|
14
|
+
# Logic: When entering a directory, check for protocols/INIT.md
|
|
15
|
+
function chpwd() {
|
|
16
|
+
if [ -f ".protocols/INIT.md" ]; then
|
|
17
|
+
echo "--- RODIN: INITIALIZATION PROTOCOL DETECTED ---"
|
|
18
|
+
cat .protocols/INIT.md | head -n 5
|
|
19
|
+
fi
|
|
20
|
+
}
|
package/bin/cli.mjs
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { copyFile, mkdir, readdir, lstat } from 'node:fs/promises';
|
|
4
|
+
import { join, dirname, basename } from 'node:path';
|
|
5
|
+
import { fileURLToPath } from 'node:url';
|
|
6
|
+
|
|
7
|
+
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
8
|
+
const pkgRoot = join(__dirname, '..');
|
|
9
|
+
|
|
10
|
+
const FILES_TO_INSTALL = [
|
|
11
|
+
'gitignore',
|
|
12
|
+
'aliases.sh',
|
|
13
|
+
'aliases.zsh',
|
|
14
|
+
'gitmessage',
|
|
15
|
+
'myKDEshorcuts.kksrc'
|
|
16
|
+
];
|
|
17
|
+
|
|
18
|
+
const DIRECTORIES_TO_INSTALL = [
|
|
19
|
+
'protocols'
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
async function copyRecursive(src, dest) {
|
|
23
|
+
const stat = await lstat(src);
|
|
24
|
+
if (stat.isDirectory()) {
|
|
25
|
+
await mkdir(dest, { recursive: true });
|
|
26
|
+
const children = await readdir(src);
|
|
27
|
+
for (const child of children) {
|
|
28
|
+
await copyRecursive(join(src, child), join(dest, child));
|
|
29
|
+
}
|
|
30
|
+
} else {
|
|
31
|
+
await copyFile(src, dest);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
async function run() {
|
|
36
|
+
console.log('\x1b[36m%s\x1b[0m', '--- Wistant Dotfiles Installer ---');
|
|
37
|
+
|
|
38
|
+
const targetDir = process.cwd();
|
|
39
|
+
console.log(`Installing dotfiles to: ${targetDir}`);
|
|
40
|
+
|
|
41
|
+
for (const file of FILES_TO_INSTALL) {
|
|
42
|
+
try {
|
|
43
|
+
const destName = file === 'gitignore' ? '.gitignore' : file;
|
|
44
|
+
await copyFile(join(pkgRoot, file), join(targetDir, destName));
|
|
45
|
+
console.log(` [OK] ${destName}`);
|
|
46
|
+
} catch (err) {
|
|
47
|
+
console.error(` [ERROR] Failed to copy ${file}: ${err.message}`);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
for (const dir of DIRECTORIES_TO_INSTALL) {
|
|
52
|
+
try {
|
|
53
|
+
const destName = dir === 'protocols' ? '.protocols' : dir;
|
|
54
|
+
await copyRecursive(join(pkgRoot, dir), join(targetDir, destName));
|
|
55
|
+
console.log(` [OK] ${destName}/`);
|
|
56
|
+
} catch (err) {
|
|
57
|
+
console.error(` [ERROR] Failed to copy ${dir}: ${err.message}`);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
console.log('\x1b[32m%s\x1b[0m', '\nDone! Elite dotfiles and protocols added.');
|
|
62
|
+
console.log('To load aliases, source the aliases.sh/zsh file in your shell config.');
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
run().catch(err => {
|
|
66
|
+
console.error('Fatal error:', err);
|
|
67
|
+
process.exit(1);
|
|
68
|
+
});
|
package/github.sh
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
# --- RODIN AUDIT : GITHUB SYNC ---
|
|
4
|
+
|
|
5
|
+
GRAY='\033[90m'
|
|
6
|
+
BOLD='\033[1m'
|
|
7
|
+
RED='\033[31m'
|
|
8
|
+
RESET='\033[0m'
|
|
9
|
+
|
|
10
|
+
refuse() {
|
|
11
|
+
echo -e "\n${RED}${BOLD}REFUS : $1${RESET}"
|
|
12
|
+
echo -e "${GRAY}L'historique Git doit être pur avant toute synchronisation.${RESET}"
|
|
13
|
+
echo -e "${GRAY}--------------------------------------------------${RESET}"
|
|
14
|
+
exit 1
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
echo -e "${GRAY}--------------------------------------------------${RESET}"
|
|
18
|
+
echo -e "${BOLD} RODIN AUDIT : GITHUB SYNC${RESET}"
|
|
19
|
+
echo -e "${GRAY}--------------------------------------------------${RESET}"
|
|
20
|
+
|
|
21
|
+
# 1. Vérification de l'Atome
|
|
22
|
+
if ! git diff-index --quiet HEAD --; then
|
|
23
|
+
refuse "Modifications non commitées détectées. Ta synchronisation est prématurée. Décompose tes intentions avant de pousser."
|
|
24
|
+
fi
|
|
25
|
+
|
|
26
|
+
# 2. Synchronisation
|
|
27
|
+
echo -e "${BOLD}Action :${RESET} Projection vers le miroir distant..."
|
|
28
|
+
git push || refuse "Échec de la projection (Vérifie ta clé ou ta connexion)."
|
|
29
|
+
|
|
30
|
+
echo -e "\n${GRAY}--------------------------------------------------${RESET}"
|
|
31
|
+
echo -e "${BOLD} SYNCHRONISATION TERMINÉE${RESET}"
|
|
32
|
+
echo -e "${GRAY} Ton historique est désormais scellé à distance.${RESET}"
|
|
33
|
+
echo -e "${GRAY}--------------------------------------------------${RESET}"
|
package/gitignore
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
# DEPENDENCIES
|
|
2
|
+
node_modules/
|
|
3
|
+
.pnp
|
|
4
|
+
.pnp.js
|
|
5
|
+
.yarn/install-state.gz
|
|
6
|
+
|
|
7
|
+
# ENVIRONMENT VARIABLES (CRITICAL - NEVER COMMIT)
|
|
8
|
+
.env
|
|
9
|
+
.env.local
|
|
10
|
+
.env.*.local
|
|
11
|
+
.env.development
|
|
12
|
+
.env.staging
|
|
13
|
+
.env.production
|
|
14
|
+
.env.test
|
|
15
|
+
.env.ci
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# Backup env files
|
|
19
|
+
*.env.backup
|
|
20
|
+
*.env.bak
|
|
21
|
+
|
|
22
|
+
# BUILD OUTPUTS
|
|
23
|
+
.next/
|
|
24
|
+
out/
|
|
25
|
+
build/
|
|
26
|
+
dist/
|
|
27
|
+
.turbo/
|
|
28
|
+
.vercel/
|
|
29
|
+
|
|
30
|
+
# TESTING
|
|
31
|
+
coverage/
|
|
32
|
+
.nyc_output/
|
|
33
|
+
*.lcov
|
|
34
|
+
|
|
35
|
+
# LOGS
|
|
36
|
+
logs/
|
|
37
|
+
*.log
|
|
38
|
+
npm-debug.log*
|
|
39
|
+
yarn-debug.log*
|
|
40
|
+
yarn-error.log*
|
|
41
|
+
pnpm-debug.log*
|
|
42
|
+
lerna-debug.log*
|
|
43
|
+
|
|
44
|
+
# OS FILES
|
|
45
|
+
.DS_Store
|
|
46
|
+
.DS_Store?
|
|
47
|
+
._*
|
|
48
|
+
.Spotlight-V100
|
|
49
|
+
.Trashes
|
|
50
|
+
ehthumbs.db
|
|
51
|
+
Thumbs.db
|
|
52
|
+
desktop.ini
|
|
53
|
+
|
|
54
|
+
# IDE / EDITORS
|
|
55
|
+
.vscode/
|
|
56
|
+
!.vscode/settings.json
|
|
57
|
+
!.vscode/tasks.json
|
|
58
|
+
!.vscode/launch.json
|
|
59
|
+
!.vscode/extensions.json
|
|
60
|
+
.idea/
|
|
61
|
+
*.swp
|
|
62
|
+
*.swo
|
|
63
|
+
*~
|
|
64
|
+
.project
|
|
65
|
+
.classpath
|
|
66
|
+
.c9/
|
|
67
|
+
*.launch
|
|
68
|
+
.settings/
|
|
69
|
+
*.sublime-workspace
|
|
70
|
+
.history/
|
|
71
|
+
|
|
72
|
+
# CERTIFICATES & KEYS (CRITICAL - NEVER COMMIT)
|
|
73
|
+
*.pem
|
|
74
|
+
*.key
|
|
75
|
+
*.cert
|
|
76
|
+
*.crt
|
|
77
|
+
*.p12
|
|
78
|
+
*.pfx
|
|
79
|
+
id_rsa
|
|
80
|
+
id_rsa.pub
|
|
81
|
+
*.asc
|
|
82
|
+
|
|
83
|
+
# TEMPORARY FILES
|
|
84
|
+
tmp/
|
|
85
|
+
temp/
|
|
86
|
+
*.tmp
|
|
87
|
+
*.temp
|
|
88
|
+
.cache/
|
|
89
|
+
|
|
90
|
+
# TYPESCRIPT
|
|
91
|
+
*.tsbuildinfo
|
|
92
|
+
next-env.d.ts
|
|
93
|
+
|
|
94
|
+
# MISC
|
|
95
|
+
.eslintcache
|
|
96
|
+
.stylelintcache
|
|
97
|
+
|
|
98
|
+
# IGNORED DOCUMENTATION (MD FILES)
|
|
99
|
+
*.md
|
|
100
|
+
!README.md
|
|
101
|
+
!CODE_OF_CONDUCT.md
|
|
102
|
+
!CONTRIBUTING.md
|
|
103
|
+
!LICENSE.md
|
|
104
|
+
!SECURITY.md
|
|
105
|
+
!LICENSE
|
|
106
|
+
!PULL_REQUEST_TEMPLATE.md
|
|
107
|
+
!AGENTS.md
|
|
108
|
+
!CLAUDE.md
|
|
109
|
+
|
|
110
|
+
# additionnals
|
|
111
|
+
.protocols/
|
|
112
|
+
_bmad/
|
|
113
|
+
_bmad-output/
|
|
114
|
+
.claude/
|
|
115
|
+
.cursor/
|
|
116
|
+
.agent/
|
|
117
|
+
CODE/
|
|
118
|
+
.content-collections/
|
|
119
|
+
.vercel
|
|
120
|
+
.env*.local
|
|
121
|
+
.agents/
|
|
122
|
+
.agent/
|
package/gitmessage
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# type(scope): subject
|
|
2
|
+
|
|
3
|
+
# --- GIT COMMIT TEMPLATE (PROTOCOLS/COMMIT.MD) ---
|
|
4
|
+
# AUTHOR: RODIN (Architectural Socratic Audit)
|
|
5
|
+
#
|
|
6
|
+
# 1. Atomic Intent? (Logic vs UI?)
|
|
7
|
+
# 2. Scope defined? (auth, db, ui, etc.)
|
|
8
|
+
# 3. Present Tense? ("add" not "added")
|
|
9
|
+
#
|
|
10
|
+
# TYPES: feat, fix, ui, refactor, perf, chore, docs, test, style
|
|
11
|
+
# -----------------------------------------------------
|
|
12
|
+
|
|
13
|
+
# Narrative justification of the change (Body):
|
|
14
|
+
#
|
|
@@ -0,0 +1,421 @@
|
|
|
1
|
+
[KDE Keyboard Layout Switcher][Global Shortcuts]
|
|
2
|
+
Switch keyboard layout to English (US)=Meta+/
|
|
3
|
+
Switch to Last-Used Keyboard Layout=Meta+Alt+L
|
|
4
|
+
Switch to Next Keyboard Layout=Meta+Alt+K
|
|
5
|
+
|
|
6
|
+
[StandardShortcuts]
|
|
7
|
+
AboutApp=
|
|
8
|
+
AboutKDE=
|
|
9
|
+
Activate Next Tab=Ctrl+PgDown; Ctrl+]
|
|
10
|
+
Activate Previous Tab=Ctrl+PgUp; Ctrl+[
|
|
11
|
+
ActualSize=Ctrl+0
|
|
12
|
+
AddBookmark=Ctrl+B
|
|
13
|
+
Back=Alt+Left; Back
|
|
14
|
+
BackwardWord=Ctrl+Left
|
|
15
|
+
Begin=Ctrl+Home
|
|
16
|
+
BeginningOfLine=Home
|
|
17
|
+
Clear=
|
|
18
|
+
Close=Ctrl+Esc; Ctrl+W
|
|
19
|
+
ConfigureNotifications=
|
|
20
|
+
ConfigureToolbars=
|
|
21
|
+
Copy=Ctrl+C; Ctrl+Ins
|
|
22
|
+
CreateFolder=Ctrl+Shift+N
|
|
23
|
+
Cut=Shift+Del; Ctrl+X
|
|
24
|
+
DeleteFile=Shift+Del
|
|
25
|
+
DeleteWordBack=Ctrl+Backspace
|
|
26
|
+
DeleteWordForward=Ctrl+Del
|
|
27
|
+
Deselect=Ctrl+Shift+A
|
|
28
|
+
DocumentBack=Alt+Shift+Left
|
|
29
|
+
DocumentForward=Alt+Shift+Right
|
|
30
|
+
Donate=
|
|
31
|
+
EditBookmarks=
|
|
32
|
+
End=Ctrl+End
|
|
33
|
+
EndOfLine=End
|
|
34
|
+
Find=Ctrl+F
|
|
35
|
+
FindNext=F3
|
|
36
|
+
FindPrev=Shift+F3
|
|
37
|
+
FitToHeight=
|
|
38
|
+
FitToPage=
|
|
39
|
+
FitToWidth=
|
|
40
|
+
Forward=Forward; Alt+Right
|
|
41
|
+
ForwardWord=Ctrl+Right
|
|
42
|
+
FullScreen=Ctrl+Shift+F
|
|
43
|
+
Goto=
|
|
44
|
+
GotoLine=Ctrl+G
|
|
45
|
+
GotoPage=
|
|
46
|
+
Help=F1
|
|
47
|
+
Home=Alt+Home; Home Page
|
|
48
|
+
KeyBindings=Ctrl+Alt+,
|
|
49
|
+
Mail=
|
|
50
|
+
MoveToTrash=Del
|
|
51
|
+
New=Ctrl+N
|
|
52
|
+
Next=PgDown
|
|
53
|
+
NextCompletion=Ctrl+Down
|
|
54
|
+
Open=Ctrl+O
|
|
55
|
+
OpenContextMenu=Shift+F10; Menu
|
|
56
|
+
OpenMainMenu=F10
|
|
57
|
+
OpenRecent=
|
|
58
|
+
Paste=Shift+Ins; Ctrl+V
|
|
59
|
+
Paste Selection=Ctrl+Shift+Ins
|
|
60
|
+
Preferences=Ctrl+Shift+,
|
|
61
|
+
PrevCompletion=Ctrl+Up
|
|
62
|
+
Print=Ctrl+P
|
|
63
|
+
PrintPreview=
|
|
64
|
+
Prior=PgUp
|
|
65
|
+
Quit=Ctrl+Q
|
|
66
|
+
Redo=Ctrl+Shift+Z
|
|
67
|
+
Reload=F5; Refresh
|
|
68
|
+
RenameFile=F2
|
|
69
|
+
Replace=Ctrl+R
|
|
70
|
+
ReportBug=
|
|
71
|
+
Revert=
|
|
72
|
+
RotateDown=Down
|
|
73
|
+
RotateUp=Up
|
|
74
|
+
Save=Ctrl+S
|
|
75
|
+
SaveAs=Ctrl+Shift+S
|
|
76
|
+
SelectAll=Ctrl+A
|
|
77
|
+
ShowHideHiddenFiles=Alt+.; Ctrl+H
|
|
78
|
+
ShowMenubar=Ctrl+M
|
|
79
|
+
ShowStatusbar=
|
|
80
|
+
ShowToolbar=
|
|
81
|
+
Spelling=
|
|
82
|
+
SubstringCompletion=Ctrl+T
|
|
83
|
+
SwitchApplicationLanguage=
|
|
84
|
+
TextCompletion=Ctrl+E
|
|
85
|
+
Undo=Ctrl+Z
|
|
86
|
+
Up=Alt+Up
|
|
87
|
+
WhatsThis=Shift+F1
|
|
88
|
+
Zoom=
|
|
89
|
+
ZoomIn=Ctrl++; Ctrl+=
|
|
90
|
+
ZoomOut=Ctrl+-
|
|
91
|
+
|
|
92
|
+
[antigravity.desktop][Global Shortcuts]
|
|
93
|
+
_launch=
|
|
94
|
+
new-empty-window=Meta+Ctrl+G
|
|
95
|
+
|
|
96
|
+
[chrome-nfmchjfdegfejojdgjcknfcaialahihh-Default][Global Shortcuts]
|
|
97
|
+
443E50A224F0919D9BC93510C844AA8B-default-action=
|
|
98
|
+
|
|
99
|
+
[com.google.Chrome][Global Shortcuts]
|
|
100
|
+
443E50A224F0919D9BC93510C844AA8B-default-action=
|
|
101
|
+
|
|
102
|
+
[cursor.desktop][Global Shortcuts]
|
|
103
|
+
_launch=
|
|
104
|
+
new-empty-window=Meta+Ctrl+C
|
|
105
|
+
|
|
106
|
+
[default-browser][Global Shortcuts]
|
|
107
|
+
443E50A224F0919D9BC93510C844AA8B-default-action=Meta+Ctrl+B
|
|
108
|
+
|
|
109
|
+
[google-chrome][Global Shortcuts]
|
|
110
|
+
443E50A224F0919D9BC93510C844AA8B-default-action=
|
|
111
|
+
|
|
112
|
+
[insomnia.desktop][Global Shortcuts]
|
|
113
|
+
_launch=
|
|
114
|
+
|
|
115
|
+
[jetbrains-webstorm-6430ab76-9ac7-4a47-84f7-3cf1bdeda8d1][Global Shortcuts]
|
|
116
|
+
443E50A224F0919D9BC93510C844AA8B-default-action=Meta+Ctrl+W
|
|
117
|
+
|
|
118
|
+
[kaccess][Global Shortcuts]
|
|
119
|
+
Toggle Screen Reader On and Off=Meta+Alt+S
|
|
120
|
+
|
|
121
|
+
[kcm_touchpad][Global Shortcuts]
|
|
122
|
+
Disable Touchpad=Touchpad Off
|
|
123
|
+
Enable Touchpad=Touchpad On
|
|
124
|
+
Toggle Touchpad=Meta+Ctrl+Zenkaku Hankaku; Touchpad Toggle
|
|
125
|
+
|
|
126
|
+
[kmix][Global Shortcuts]
|
|
127
|
+
decrease_microphone_volume=Microphone Volume Down
|
|
128
|
+
decrease_volume=Volume Down
|
|
129
|
+
decrease_volume_small=Shift+Volume Down
|
|
130
|
+
increase_microphone_volume=Microphone Volume Up
|
|
131
|
+
increase_volume=Volume Up
|
|
132
|
+
increase_volume_small=Shift+Volume Up
|
|
133
|
+
mic_mute=Meta+Volume Mute; Microphone Mute
|
|
134
|
+
mute=Volume Mute
|
|
135
|
+
|
|
136
|
+
[ksmserver][Global Shortcuts]
|
|
137
|
+
Halt Without Confirmation=
|
|
138
|
+
Lock Session=Meta+Shift+L; Screensaver
|
|
139
|
+
Log Out=Ctrl+Alt+Del
|
|
140
|
+
Log Out Without Confirmation=
|
|
141
|
+
LogOut=
|
|
142
|
+
Reboot=
|
|
143
|
+
Reboot Without Confirmation=
|
|
144
|
+
Shut Down=
|
|
145
|
+
|
|
146
|
+
[kwin][Global Shortcuts]
|
|
147
|
+
Activate Window Demanding Attention=Meta+Ctrl+A
|
|
148
|
+
ClearLastMouseMark=Meta+Shift+F12
|
|
149
|
+
ClearMouseMarks=Meta+Shift+F11
|
|
150
|
+
Cycle Overview=
|
|
151
|
+
Cycle Overview Opposite=
|
|
152
|
+
Decrease Opacity=
|
|
153
|
+
Edit Tiles=Meta+T
|
|
154
|
+
Expose=Ctrl+F9
|
|
155
|
+
ExposeAll=Launch (C); Ctrl+F10
|
|
156
|
+
ExposeClass=Ctrl+F7
|
|
157
|
+
ExposeClassCurrentDesktop=
|
|
158
|
+
Grid View=Meta+G
|
|
159
|
+
Increase Opacity=
|
|
160
|
+
Invert=Meta+Ctrl+I
|
|
161
|
+
Invert Screen Colors=
|
|
162
|
+
InvertWindow=Meta+Ctrl+U
|
|
163
|
+
Kill Window=Meta+Ctrl+Esc
|
|
164
|
+
MinimizeAll=Meta+Alt+PgDown
|
|
165
|
+
Move Tablet to Next Output=
|
|
166
|
+
MoveMouseToCenter=Meta+F6
|
|
167
|
+
MoveMouseToFocus=Meta+F5
|
|
168
|
+
MoveZoomDown=
|
|
169
|
+
MoveZoomLeft=
|
|
170
|
+
MoveZoomRight=
|
|
171
|
+
MoveZoomUp=
|
|
172
|
+
Overview=Meta+W
|
|
173
|
+
Setup Window Shortcut=
|
|
174
|
+
Show Desktop=Meta+D
|
|
175
|
+
Suspend Compositing=Alt+Shift+F12
|
|
176
|
+
Switch One Desktop Down=Meta+Ctrl+Down
|
|
177
|
+
Switch One Desktop Up=Meta+Ctrl+Up
|
|
178
|
+
Switch One Desktop to the Left=Meta+Ctrl+Left
|
|
179
|
+
Switch One Desktop to the Right=Meta+Ctrl+Right
|
|
180
|
+
Switch Window Down=Meta+Alt+Down
|
|
181
|
+
Switch Window Left=Meta+Alt+Left
|
|
182
|
+
Switch Window Right=Meta+Alt+Right
|
|
183
|
+
Switch Window Up=Meta+Alt+Up
|
|
184
|
+
Switch to Desktop 1=Ctrl+F1
|
|
185
|
+
Switch to Desktop 10=
|
|
186
|
+
Switch to Desktop 11=
|
|
187
|
+
Switch to Desktop 12=
|
|
188
|
+
Switch to Desktop 13=
|
|
189
|
+
Switch to Desktop 14=
|
|
190
|
+
Switch to Desktop 15=
|
|
191
|
+
Switch to Desktop 16=
|
|
192
|
+
Switch to Desktop 17=
|
|
193
|
+
Switch to Desktop 18=
|
|
194
|
+
Switch to Desktop 19=
|
|
195
|
+
Switch to Desktop 2=Ctrl+F2
|
|
196
|
+
Switch to Desktop 20=
|
|
197
|
+
Switch to Desktop 3=Ctrl+F3
|
|
198
|
+
Switch to Desktop 4=Ctrl+F4
|
|
199
|
+
Switch to Desktop 5=
|
|
200
|
+
Switch to Desktop 6=
|
|
201
|
+
Switch to Desktop 7=
|
|
202
|
+
Switch to Desktop 8=
|
|
203
|
+
Switch to Desktop 9=
|
|
204
|
+
Switch to Next Desktop=
|
|
205
|
+
Switch to Next Screen=
|
|
206
|
+
Switch to Previous Desktop=
|
|
207
|
+
Switch to Previous Screen=
|
|
208
|
+
Switch to Screen 0=
|
|
209
|
+
Switch to Screen 1=
|
|
210
|
+
Switch to Screen 2=
|
|
211
|
+
Switch to Screen 3=
|
|
212
|
+
Switch to Screen 4=
|
|
213
|
+
Switch to Screen 5=
|
|
214
|
+
Switch to Screen 6=
|
|
215
|
+
Switch to Screen 7=
|
|
216
|
+
Switch to Screen Above=
|
|
217
|
+
Switch to Screen Below=
|
|
218
|
+
Switch to Screen to the Left=
|
|
219
|
+
Switch to Screen to the Right=
|
|
220
|
+
Toggle=Meta+Ctrl+Alt+P
|
|
221
|
+
Toggle Night Color=
|
|
222
|
+
Toggle Window Raise/Lower=
|
|
223
|
+
ToggleCurrentThumbnail=Meta+Ctrl+T
|
|
224
|
+
ToggleMouseClick=Meta+*
|
|
225
|
+
TrackMouse=
|
|
226
|
+
Walk Through Windows=Alt+Tab
|
|
227
|
+
Walk Through Windows (Reverse)=Alt+Shift+Tab
|
|
228
|
+
Walk Through Windows Alternative=
|
|
229
|
+
Walk Through Windows Alternative (Reverse)=
|
|
230
|
+
Walk Through Windows of Current Application=Alt+`
|
|
231
|
+
Walk Through Windows of Current Application (Reverse)=Alt+~
|
|
232
|
+
Walk Through Windows of Current Application Alternative=
|
|
233
|
+
Walk Through Windows of Current Application Alternative (Reverse)=
|
|
234
|
+
Window Above Other Windows=
|
|
235
|
+
Window Below Other Windows=
|
|
236
|
+
Window Close=Alt+F4
|
|
237
|
+
Window Custom Quick Tile Bottom=
|
|
238
|
+
Window Custom Quick Tile Left=
|
|
239
|
+
Window Custom Quick Tile Right=
|
|
240
|
+
Window Custom Quick Tile Top=
|
|
241
|
+
Window Fullscreen=
|
|
242
|
+
Window Grow Horizontal=
|
|
243
|
+
Window Grow Vertical=
|
|
244
|
+
Window Lower=
|
|
245
|
+
Window Maximize=Meta+PgUp
|
|
246
|
+
Window Maximize Horizontal=
|
|
247
|
+
Window Maximize Vertical=
|
|
248
|
+
Window Minimize=Meta+PgDown
|
|
249
|
+
Window Move=
|
|
250
|
+
Window Move Center=
|
|
251
|
+
Window No Border=
|
|
252
|
+
Window On All Desktops=
|
|
253
|
+
Window One Desktop Down=Meta+Ctrl+Shift+Down
|
|
254
|
+
Window One Desktop Up=Meta+Ctrl+Shift+Up
|
|
255
|
+
Window One Desktop to the Left=Meta+Ctrl+Shift+Left
|
|
256
|
+
Window One Desktop to the Right=Meta+Ctrl+Shift+Right
|
|
257
|
+
Window One Screen Down=
|
|
258
|
+
Window One Screen Up=
|
|
259
|
+
Window One Screen to the Left=
|
|
260
|
+
Window One Screen to the Right=
|
|
261
|
+
Window Operations Menu=Alt+F3
|
|
262
|
+
Window Pack Down=
|
|
263
|
+
Window Pack Left=
|
|
264
|
+
Window Pack Right=
|
|
265
|
+
Window Pack Up=
|
|
266
|
+
Window Quick Tile Bottom=Meta+Down
|
|
267
|
+
Window Quick Tile Bottom Left=
|
|
268
|
+
Window Quick Tile Bottom Right=
|
|
269
|
+
Window Quick Tile Left=Meta+Left
|
|
270
|
+
Window Quick Tile Right=Meta+Right
|
|
271
|
+
Window Quick Tile Top=Meta+Up
|
|
272
|
+
Window Quick Tile Top Left=
|
|
273
|
+
Window Quick Tile Top Right=
|
|
274
|
+
Window Raise=
|
|
275
|
+
Window Resize=
|
|
276
|
+
Window Shade=
|
|
277
|
+
Window Shrink Horizontal=
|
|
278
|
+
Window Shrink Vertical=
|
|
279
|
+
Window to Desktop 1=
|
|
280
|
+
Window to Desktop 10=
|
|
281
|
+
Window to Desktop 11=
|
|
282
|
+
Window to Desktop 12=
|
|
283
|
+
Window to Desktop 13=
|
|
284
|
+
Window to Desktop 14=
|
|
285
|
+
Window to Desktop 15=
|
|
286
|
+
Window to Desktop 16=
|
|
287
|
+
Window to Desktop 17=
|
|
288
|
+
Window to Desktop 18=
|
|
289
|
+
Window to Desktop 19=
|
|
290
|
+
Window to Desktop 2=
|
|
291
|
+
Window to Desktop 20=
|
|
292
|
+
Window to Desktop 3=
|
|
293
|
+
Window to Desktop 4=
|
|
294
|
+
Window to Desktop 5=
|
|
295
|
+
Window to Desktop 6=
|
|
296
|
+
Window to Desktop 7=
|
|
297
|
+
Window to Desktop 8=
|
|
298
|
+
Window to Desktop 9=
|
|
299
|
+
Window to Next Desktop=
|
|
300
|
+
Window to Next Screen=
|
|
301
|
+
Window to Previous Desktop=
|
|
302
|
+
Window to Previous Screen=
|
|
303
|
+
Window to Screen 0=
|
|
304
|
+
Window to Screen 1=
|
|
305
|
+
Window to Screen 2=
|
|
306
|
+
Window to Screen 3=
|
|
307
|
+
Window to Screen 4=
|
|
308
|
+
Window to Screen 5=
|
|
309
|
+
Window to Screen 6=
|
|
310
|
+
Window to Screen 7=
|
|
311
|
+
disableInputCapture=Meta+Shift+Esc
|
|
312
|
+
view_actual_size=Meta+0
|
|
313
|
+
view_zoom_in=Meta+=; Meta++
|
|
314
|
+
view_zoom_out=Meta+-
|
|
315
|
+
|
|
316
|
+
[mediacontrol][Global Shortcuts]
|
|
317
|
+
mediavolumedown=
|
|
318
|
+
mediavolumeup=
|
|
319
|
+
nextmedia=Media Next
|
|
320
|
+
pausemedia=Media Pause
|
|
321
|
+
playmedia=
|
|
322
|
+
playpausemedia=Media Play
|
|
323
|
+
previousmedia=Media Previous
|
|
324
|
+
stopmedia=Media Stop
|
|
325
|
+
|
|
326
|
+
[org.kde.dolphin.desktop][Global Shortcuts]
|
|
327
|
+
_launch=Meta+E
|
|
328
|
+
|
|
329
|
+
[org.kde.kcalc.desktop][Global Shortcuts]
|
|
330
|
+
_launch=Calculator
|
|
331
|
+
|
|
332
|
+
[org.kde.konsole.desktop][Global Shortcuts]
|
|
333
|
+
NewTab=
|
|
334
|
+
NewWindow=
|
|
335
|
+
_launch=Meta+Ctrl+K
|
|
336
|
+
|
|
337
|
+
[org.kde.krunner.desktop][Global Shortcuts]
|
|
338
|
+
RunClipboard=Alt+Shift+F2
|
|
339
|
+
_launch=Alt+F2; Alt+Space; Search
|
|
340
|
+
|
|
341
|
+
[org.kde.kscreen.desktop][Global Shortcuts]
|
|
342
|
+
ShowOSD=Display; Meta+P
|
|
343
|
+
|
|
344
|
+
[org.kde.plasma-systemmonitor.desktop][Global Shortcuts]
|
|
345
|
+
_launch=Meta+Esc
|
|
346
|
+
|
|
347
|
+
[org.kde.plasma.emojier.desktop][Global Shortcuts]
|
|
348
|
+
_launch=Meta+Ctrl+E
|
|
349
|
+
|
|
350
|
+
[org.kde.spectacle.desktop][Global Shortcuts]
|
|
351
|
+
ActiveWindowScreenShot=Meta+Print
|
|
352
|
+
CurrentMonitorScreenShot=
|
|
353
|
+
FullScreenScreenShot=Shift+Print
|
|
354
|
+
OpenWithoutScreenshot=
|
|
355
|
+
RecordRegion=Meta+Shift+R; Meta+R
|
|
356
|
+
RecordScreen=Meta+Alt+R
|
|
357
|
+
RecordWindow=Meta+Ctrl+R
|
|
358
|
+
RectangularRegionScreenShot=Meta+Shift+Print
|
|
359
|
+
WindowUnderCursorScreenShot=Meta+Ctrl+Print
|
|
360
|
+
_launch=Print; Meta+Shift+S
|
|
361
|
+
|
|
362
|
+
[org_kde_powerdevil][Global Shortcuts]
|
|
363
|
+
Decrease Keyboard Brightness=Keyboard Brightness Down
|
|
364
|
+
Decrease Screen Brightness=Monitor Brightness Down
|
|
365
|
+
Decrease Screen Brightness Small=Shift+Monitor Brightness Down
|
|
366
|
+
Hibernate=Hibernate
|
|
367
|
+
Increase Keyboard Brightness=Keyboard Brightness Up
|
|
368
|
+
Increase Screen Brightness=Monitor Brightness Up
|
|
369
|
+
Increase Screen Brightness Small=Shift+Monitor Brightness Up
|
|
370
|
+
PowerDown=Power Down
|
|
371
|
+
PowerOff=Power Off
|
|
372
|
+
Sleep=Sleep
|
|
373
|
+
Toggle Keyboard Backlight=Keyboard Light On/Off
|
|
374
|
+
Turn Off Screen=
|
|
375
|
+
powerProfile=Battery; Meta+B
|
|
376
|
+
|
|
377
|
+
[plasmashell][Global Shortcuts]
|
|
378
|
+
activate application launcher=Alt+F1; Meta
|
|
379
|
+
activate task manager entry 1=Meta+1
|
|
380
|
+
activate task manager entry 10=
|
|
381
|
+
activate task manager entry 2=Meta+2
|
|
382
|
+
activate task manager entry 3=Meta+3
|
|
383
|
+
activate task manager entry 4=Meta+4
|
|
384
|
+
activate task manager entry 5=Meta+5
|
|
385
|
+
activate task manager entry 6=Meta+6
|
|
386
|
+
activate task manager entry 7=Meta+7
|
|
387
|
+
activate task manager entry 8=Meta+8
|
|
388
|
+
activate task manager entry 9=Meta+9
|
|
389
|
+
activate widget 142=
|
|
390
|
+
activate widget 156=
|
|
391
|
+
activate widget 28=
|
|
392
|
+
activate widget 3=
|
|
393
|
+
activate widget 41=
|
|
394
|
+
activate widget 47=
|
|
395
|
+
activate widget 55=
|
|
396
|
+
activate widget 58=
|
|
397
|
+
activate widget 92=Ctrl+Alt+P
|
|
398
|
+
clear-history=
|
|
399
|
+
clipboard_action=Meta+Ctrl+X
|
|
400
|
+
cycle-panels=Meta+Alt+P
|
|
401
|
+
cycleNextAction=
|
|
402
|
+
cyclePrevAction=
|
|
403
|
+
manage activities=Meta+Q
|
|
404
|
+
next activity=Meta+A
|
|
405
|
+
previous activity=Meta+Shift+A
|
|
406
|
+
repeat_action=
|
|
407
|
+
show dashboard=Ctrl+F12
|
|
408
|
+
show-barcode=
|
|
409
|
+
show-on-mouse-pos=Meta+V
|
|
410
|
+
stop current activity=Meta+S
|
|
411
|
+
switch to next activity=
|
|
412
|
+
switch to previous activity=
|
|
413
|
+
toggle do not disturb=
|
|
414
|
+
|
|
415
|
+
[systemsettings.desktop][Global Shortcuts]
|
|
416
|
+
_launch=Tools
|
|
417
|
+
kcm-kscreen=Meta+Ctrl+P
|
|
418
|
+
kcm-lookandfeel=
|
|
419
|
+
kcm-powerdevilprofilesconfig=
|
|
420
|
+
kcm-screenlocker=
|
|
421
|
+
kcm-users=
|