Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 64344e0e36 | |||
| c29688ed30 |
@@ -198,6 +198,8 @@ just message me on discord lmao.
|
|||||||
|
|
||||||
# Updates:
|
# Updates:
|
||||||
|
|
||||||
|
19-05-2026 - updated ghostty config to use alt+arrows instead of ctrl+arrows for panes, added super+alt+numbers to toggle workspaces for multi-workspace view
|
||||||
|
|
||||||
18-05-2026 - added tips, better ghostty and zsh configuration and a project manager TUI to open your github repo's in VSCode.
|
18-05-2026 - added tips, better ghostty and zsh configuration and a project manager TUI to open your github repo's in VSCode.
|
||||||
|
|
||||||
17-05-2026 - added auto-updater as well as install script.
|
17-05-2026 - added auto-updater as well as install script.
|
||||||
|
|||||||
@@ -23,8 +23,8 @@ split-inherit-working-directory = true
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
keybind = ctrl+up=new_split:up
|
keybind = alt+up=new_split:up
|
||||||
keybind = ctrl+down=new_split:down
|
keybind = alt+down=new_split:down
|
||||||
keybind = ctrl+left=new_split:left
|
keybind = alt+left=new_split:left
|
||||||
keybind = ctrl+right=new_split:right
|
keybind = alt+right=new_split:right
|
||||||
keybind = ctrl+r=reload_config
|
keybind = ctrl+r=reload_config
|
||||||
@@ -20,6 +20,10 @@ mkdir -p ~/projects
|
|||||||
|
|
||||||
echo "source /home/$(whoami)/.config/sdgos/zshconfig.zsh" >> ~/.zshrc
|
echo "source /home/$(whoami)/.config/sdgos/zshconfig.zsh" >> ~/.zshrc
|
||||||
|
|
||||||
|
mv /home/$(whoami)/.zshrc /home/$(whoami)/.zshrc-old
|
||||||
|
ln -sf /home/$(Whoami)/.config/sdgos/zshrc /home/$(whoami)
|
||||||
|
mv /home/$(whoami)/.p10k.zsh /home/$(whoami)/.p10k.zsh-old
|
||||||
|
ln -sf /home/$(Whoami)/.config/sdgos/p10k.zsh /home/$(whoami)
|
||||||
|
|
||||||
chmod -R a+x ~/.config/sdgos
|
chmod -R a+x ~/.config/sdgos
|
||||||
|
|
||||||
|
|||||||
@@ -103,6 +103,17 @@ bind=SUPER,7,view,7,1 # focus workspace 7
|
|||||||
bind=SUPER,8,view,8,1 # focus workspace 8
|
bind=SUPER,8,view,8,1 # focus workspace 8
|
||||||
bind=SUPER,9,view,9,1 # focus workspace 9
|
bind=SUPER,9,view,9,1 # focus workspace 9
|
||||||
|
|
||||||
|
# add workspaces to vie with mainmod + alt + [1-9]
|
||||||
|
bind=SUPER+alt,1,toggleview,1 # toggle on workspace 1
|
||||||
|
bind=SUPER+alt,2,toggleview,2 # toggle on workspace 2
|
||||||
|
bind=SUPER+alt,3,toggleview,3 # toggle on workspace 3
|
||||||
|
bind=SUPER+alt,4,toggleview,4 # toggle on workspace 4
|
||||||
|
bind=SUPER+alt,5,toggleview,5 # toggle on workspace 5
|
||||||
|
bind=SUPER+alt,6,toggleview,6 # toggle on workspace 6
|
||||||
|
bind=SUPER+alt,7,toggleview,7 # toggle on workspace 7
|
||||||
|
bind=SUPER+alt,8,toggleview,8 # toggle on workspace 8
|
||||||
|
bind=SUPER+alt,9,toggleview,9 # toggle on workspace 9
|
||||||
|
|
||||||
|
|
||||||
# Mouse Button Bindings
|
# Mouse Button Bindings
|
||||||
# btn_left and btn_right can't bind none mod key
|
# btn_left and btn_right can't bind none mod key
|
||||||
|
|||||||
+1837
File diff suppressed because it is too large
Load Diff
@@ -22,7 +22,7 @@
|
|||||||
[SDG-OS Tips]: Did you know? You can use SUPER+SHIFT+[1-9] to move windows to specific workspaces
|
[SDG-OS Tips]: Did you know? You can use SUPER+SHIFT+[1-9] to move windows to specific workspaces
|
||||||
[SDG-OS Tips]: Did you know? You can use SUPER+[1-9] to focus specific workspaces
|
[SDG-OS Tips]: Did you know? You can use SUPER+[1-9] to focus specific workspaces
|
||||||
[SDG-OS Tips]: Did you know? You can use SUPER+SHIFT+up/down to exchange stack direction
|
[SDG-OS Tips]: Did you know? You can use SUPER+SHIFT+up/down to exchange stack direction
|
||||||
[SDG-OS Tips]: Did you know? You can use Ctrl+Arrow keys in Ghostty to split panes
|
[SDG-OS Tips]: Did you know? You can use Alt+Arrow keys in Ghostty to split panes
|
||||||
[SDG-OS Tips]: Did you know? You can use Ctrl+R in Ghostty to reload the configuration
|
[SDG-OS Tips]: Did you know? You can use Ctrl+R in Ghostty to reload the configuration
|
||||||
[SDG-OS Tips]: Did you know? You can use zoxide's 'cd' integration to jump between directories you've visited before using partial names with fzf
|
[SDG-OS Tips]: Did you know? You can use zoxide's 'cd' integration to jump between directories you've visited before using partial names with fzf
|
||||||
[SDG-OS Tips]: Did you know? You can use 'pacgui' to launch the graphical package installer
|
[SDG-OS Tips]: Did you know? You can use 'pacgui' to launch the graphical package installer
|
||||||
|
|||||||
Executable
+17
@@ -0,0 +1,17 @@
|
|||||||
|
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
||||||
|
# Initialization code that may require console input (password prompts, [y/n]
|
||||||
|
# confirmations, etc.) must go above this block; everything else may go below.
|
||||||
|
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
||||||
|
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
||||||
|
fi
|
||||||
|
|
||||||
|
source /usr/share/cachyos-zsh-config/cachyos-config.zsh
|
||||||
|
|
||||||
|
# Added by LM Studio CLI (lms)
|
||||||
|
export PATH="$PATH:/home/den/.lmstudio/bin"
|
||||||
|
# End of LM Studio CLI section
|
||||||
|
|
||||||
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||||
|
|
||||||
|
source /home/den/.config/sdgos/zshconfig.zsh
|
||||||
Reference in New Issue
Block a user