mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
chezmoi: windows migration dir
This commit is contained in:
parent
52b70819bf
commit
c24adf35d4
51 changed files with 3403 additions and 3840 deletions
72
home/Appdata/Roaming/komorebi/komorebi.ahk
Normal file
72
home/Appdata/Roaming/komorebi/komorebi.ahk
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
; Use %KOMOREBI_CONFIG_HOME% Environment Variable to set the path to the config file
|
||||
#Requires AutoHotkey v2.0.2
|
||||
#SingleInstance Force
|
||||
|
||||
Komorebic(cmd) {
|
||||
RunWait(format("komorebic.exe {}", cmd), , "Hide")
|
||||
}
|
||||
|
||||
#q:: Komorebic("close")
|
||||
#m:: Komorebic("minimize")
|
||||
|
||||
; Focus windows
|
||||
#h:: Komorebic("focus left")
|
||||
#n:: Komorebic("focus down")
|
||||
#e:: Komorebic("focus up")
|
||||
#i:: Komorebic("focus right")
|
||||
|
||||
#+[:: Komorebic("cycle-focus previous")
|
||||
#+]:: Komorebic("cycle-focus next")
|
||||
|
||||
; Move windows
|
||||
#+h:: Komorebic("move left")
|
||||
#+n:: Komorebic("move down")
|
||||
#+e:: Komorebic("move up")
|
||||
#+i:: Komorebic("move right")
|
||||
|
||||
; Stack windows
|
||||
#Left:: Komorebic("stack left")
|
||||
#Down:: Komorebic("stack down")
|
||||
#Up:: Komorebic("stack up")
|
||||
#Right:: Komorebic("stack right")
|
||||
#;:: Komorebic("unstack")
|
||||
#[:: Komorebic("cycle-stack previous")
|
||||
#]:: Komorebic("cycle-stack next")
|
||||
|
||||
; Resize
|
||||
#=:: Komorebic("resize-axis horizontal increase")
|
||||
#-:: Komorebic("resize-axis horizontal decrease")
|
||||
#+=:: Komorebic("resize-axis vertical increase")
|
||||
#+_:: Komorebic("resize-axis vertical decrease")
|
||||
|
||||
; Manipulate windows
|
||||
#t:: Komorebic("toggle-float")
|
||||
#f:: Komorebic("toggle-monocle")
|
||||
|
||||
; Window manager options
|
||||
#+r:: Komorebic("retile")
|
||||
#p:: Komorebic("toggle-pause")
|
||||
|
||||
; Layouts
|
||||
#x:: Komorebic("flip-layout horizontal")
|
||||
#y:: Komorebic("flip-layout vertical")
|
||||
|
||||
; Workspaces
|
||||
#1:: Komorebic("focus-workspace 0")
|
||||
#2:: Komorebic("focus-workspace 1")
|
||||
#3:: Komorebic("focus-workspace 2")
|
||||
#4:: Komorebic("focus-workspace 3")
|
||||
#5:: Komorebic("focus-workspace 4")
|
||||
#6:: Komorebic("focus-workspace 5")
|
||||
#7:: Komorebic("focus-workspace 6")
|
||||
#8:: Komorebic("focus-workspace 7")
|
||||
|
||||
; Move windows across workspaces
|
||||
#+1:: Komorebic("move-to-workspace 0")
|
||||
#+2:: Komorebic("move-to-workspace 1")
|
||||
#+3:: Komorebic("move-to-workspace 2")
|
||||
#+4:: Komorebic("move-to-workspace 3")
|
||||
#+5:: Komorebic("move-to-workspace 4")
|
||||
#+6:: Komorebic("move-to-workspace 5")
|
||||
#+7:: Komorebic("move-to-workspace 6")
|
||||
#+8:: Komorebic("move-to-workspace 7")
|
||||
73
home/Appdata/Roaming/komorebi/komorebi.bar.json
Normal file
73
home/Appdata/Roaming/komorebi/komorebi.bar.json
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
{
|
||||
"$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.34/schema.bar.json",
|
||||
"monitor": 0,
|
||||
"font_family": "JetBrains Mono",
|
||||
"theme": {
|
||||
"palette": "Base16",
|
||||
"name": "Ashes",
|
||||
"accent": "Base0D"
|
||||
},
|
||||
"left_widgets": [
|
||||
{
|
||||
"Komorebi": {
|
||||
"workspaces": {
|
||||
"enable": true,
|
||||
"hide_empty_workspaces": false
|
||||
},
|
||||
"layout": {
|
||||
"enable": true
|
||||
},
|
||||
"focused_window": {
|
||||
"enable": true,
|
||||
"show_icon": true
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"right_widgets": [
|
||||
{
|
||||
"Update": {
|
||||
"enable": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"Media": {
|
||||
"enable": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"Storage": {
|
||||
"enable": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"Memory": {
|
||||
"enable": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"Network": {
|
||||
"enable": true,
|
||||
"show_total_data_transmitted": true,
|
||||
"show_network_activity": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"Date": {
|
||||
"enable": true,
|
||||
"format": "DayDateMonthYear"
|
||||
}
|
||||
},
|
||||
{
|
||||
"Time": {
|
||||
"enable": true,
|
||||
"format": "TwentyFourHour"
|
||||
}
|
||||
},
|
||||
{
|
||||
"Battery": {
|
||||
"enable": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
58
home/Appdata/Roaming/komorebi/komorebi.json
Normal file
58
home/Appdata/Roaming/komorebi/komorebi.json
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
"$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.34/schema.json",
|
||||
"app_specific_configuration_path": "$Env:KOMOREBI_CONFIG_HOME/applications.json",
|
||||
"window_hiding_behaviour": "Cloak",
|
||||
"cross_monitor_move_behaviour": "Insert",
|
||||
"default_workspace_padding": 20,
|
||||
"default_container_padding": 20,
|
||||
"border": true,
|
||||
"border_width": 8,
|
||||
"border_offset": -1,
|
||||
"theme": {
|
||||
"palette": "Base16",
|
||||
"name": "Ashes",
|
||||
"unfocused_border": "Base03",
|
||||
"bar_accent": "Base0D"
|
||||
},
|
||||
"stackbar": {
|
||||
"height": 40,
|
||||
"mode": "OnStack",
|
||||
"tabs": {
|
||||
"width": 300
|
||||
}
|
||||
},
|
||||
"monitors": [
|
||||
{
|
||||
"workspaces": [
|
||||
{
|
||||
"name": "I",
|
||||
"layout": "BSP"
|
||||
},
|
||||
{
|
||||
"name": "II",
|
||||
"layout": "VerticalStack"
|
||||
},
|
||||
{
|
||||
"name": "III",
|
||||
"layout": "HorizontalStack"
|
||||
},
|
||||
{
|
||||
"name": "IV",
|
||||
"layout": "UltrawideVerticalStack"
|
||||
},
|
||||
{
|
||||
"name": "V",
|
||||
"layout": "Rows"
|
||||
},
|
||||
{
|
||||
"name": "VI",
|
||||
"layout": "Grid"
|
||||
},
|
||||
{
|
||||
"name": "VII",
|
||||
"layout": "RightMainVerticalStack"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue