Compare commits
3 Commits
1847086199
...
91f21a869f
Author | SHA1 | Date | |
---|---|---|---|
91f21a869f | |||
cf0e3b8941 | |||
8d0b34e3b3 |
@ -65,5 +65,6 @@
|
||||
"cursor.chat.smoothStreaming": true,
|
||||
"godotTools.lsp.serverPort": 6005,
|
||||
"debug.console.fontFamily": "FiraCode Nerd Font Mono",
|
||||
"git.openRepositoryInParentFolders": "never"
|
||||
"git.openRepositoryInParentFolders": "never",
|
||||
"typescript.updateImportsOnFileMove.enabled": "always"
|
||||
}
|
||||
|
@ -186,6 +186,6 @@ mode "resize" {
|
||||
|
||||
bindsym $mod+r mode "resize"
|
||||
|
||||
exec --no-startup-id i3-msg 'workspace 4; exec firefox; sleep 1; workspace 9; exec thunderbird; sleep 1; workspace 8; exec jellyfinmediaplayer'
|
||||
exec --no-startup-id ~/.config/i3/startup_apps.sh
|
||||
|
||||
|
||||
|
15
i3/.config/i3/startup_apps.sh
Executable file
15
i3/.config/i3/startup_apps.sh
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
# Start Firefox and move it to workspace 4
|
||||
i3-msg 'workspace 4; exec firefox'
|
||||
|
||||
# Give a delay for Firefox to start and initialize
|
||||
sleep 2
|
||||
|
||||
# Start Thunderbird and move it to workspace 9
|
||||
i3-msg 'workspace 9; exec thunderbird'
|
||||
|
||||
# Give a delay for Thunderbird to start and initialize
|
||||
sleep 2
|
||||
|
||||
# Start Jellyfin Media Player and move it to workspace 8
|
||||
i3-msg 'workspace 8; exec jellyfinmediaplayer'
|
@ -427,6 +427,6 @@ wintypes:
|
||||
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
|
||||
dock = { shadow = false; clip-shadow-above = true; }
|
||||
dnd = { shadow = false; }
|
||||
popup_menu = { opacity = 0.8; }
|
||||
dropdown_menu = { opacity = 0.8; }
|
||||
popup_menu = { opacity = 1; }
|
||||
dropdown_menu = { opacity = 1; }
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user