diff --git a/config/kitty/current-theme.conf b/config/kitty/current-theme.conf index 51b9f7c..7d21454 100644 --- a/config/kitty/current-theme.conf +++ b/config/kitty/current-theme.conf @@ -36,14 +36,14 @@ color6 #00FED4 color7 #EEF7FD # bright - color8 #5C6871 + color8 #1f2830 color9 #E46468 color10 #82D1B9 color11 #F6DB8B color12 #8FD2F7 color13 #F79DE7 color14 #7EFEDE - color15 #C1D6D6 + color15 #d2dee7 # extended colors color16 #ff9e64 diff --git a/config/kitty/current-theme1.conf b/config/kitty/current-theme1.conf new file mode 100644 index 0000000..f2d9728 --- /dev/null +++ b/config/kitty/current-theme1.conf @@ -0,0 +1,50 @@ +# vim:ft=kitty + +## name: Tokyo Night +## license: MIT +## author: Folke Lemaitre +## upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/kitty/tokyonight_night.conf + + +background #1a1b26 +foreground #c0caf5 +selection_background #283457 +selection_foreground #c0caf5 +url_color #73daca +cursor #c0caf5 +cursor_text_color #1a1b26 + +# Tabs +active_tab_background #7aa2f7 +active_tab_foreground #16161e +inactive_tab_background #292e42 +inactive_tab_foreground #545c7e +#tab_bar_background #15161e + +# Windows +active_border_color #7aa2f7 +inactive_border_color #292e42 + +# normal +color0 #15161e +color1 #f7768e +color2 #9ece6a +color3 #e0af68 +color4 #7aa2f7 +color5 #bb9af7 +color6 #7dcfff +color7 #a9b1d6 + +# bright +color8 #414868 +color9 #f7768e +color10 #9ece6a +color11 #e0af68 +color12 #7aa2f7 +color13 #bb9af7 +color14 #7dcfff +color15 #c0caf5 + +# extended colors +color16 #ff9e64 +color17 #db4b4b diff --git a/config/kitty/kitty.conf b/config/kitty/kitty.conf index 49cf003..35f880f 100644 --- a/config/kitty/kitty.conf +++ b/config/kitty/kitty.conf @@ -374,7 +374,7 @@ cursor_shape_unfocused beam #: Scrollback {{{ -# scrollback_lines 2000 + scrollback_lines 10000 #: Number of lines of history to keep in memory for scrolling back. #: Memory is allocated on demand. Negative numbers are (effectively) diff --git a/config/mpv/input.conf b/config/mpv/input.conf new file mode 100644 index 0000000..e69de29 diff --git a/config/mpv/mpv.conf b/config/mpv/mpv.conf new file mode 100644 index 0000000..1b02c52 --- /dev/null +++ b/config/mpv/mpv.conf @@ -0,0 +1,2 @@ +loop=inf + diff --git a/config/niri/config.kdl b/config/niri/config.kdl index 17e7215..d049bba 100644 --- a/config/niri/config.kdl +++ b/config/niri/config.kdl @@ -162,8 +162,8 @@ clipboard { disable-primary } cursor { - xcursor-theme "BreezeX-Black" - xcursor-size 26 + xcursor-theme "Bibata-Modern-Ice" + xcursor-size 20 hide-when-typing hide-after-inactive-ms 1000 } @@ -181,6 +181,8 @@ spawn-at-startup "swaybg" "-i" "imgs/bafkreiax76e2p3xqoikrkbppjl4mipnaamqrgxkcfg // To run a shell command (with variables, pipes, etc.), use spawn-sh-at-startup: // spawn-sh-at-startup "qs -c ~/source/qs/MyAwesomeShell" +// + spawn-sh-at-startup "walker --gapplication-service" hotkey-overlay { // Uncomment this line to disable the "Important Hotkeys" pop-up at startup. @@ -283,6 +285,14 @@ window-rule { proportion 0.5 } } +window-rule { + match title="Walker" + open-floating true + border { + off + } + +} window-rule { match app-id="clipse" @@ -401,6 +411,7 @@ binds { Mod+P { spawn-sh "playerctl -p mpd play-pause"; } Mod+Period { spawn-sh "playerctl -p mpd next"; } Mod+Comma { spawn-sh "playerctl -p mpd previous"; } + Ctrl+Alt+V {spawn "/home/unconfer/.sh/paste-txt-file.sh";} // Theme Switching (v1.0) // MOD+SHIFT+T { spawn-sh "hyprwave-toggle set-theme zzz"; } @@ -488,7 +499,7 @@ binds { //Mod+Escape repeat=false { toggle-overview; } Mod+Shift+C repeat=false { close-window; } - + Mod+Alt+D repeat=false {spawn "hyprwhspr" "record" "toggle";} Mod+Left { focus-column-left; } Mod+Down { focus-window-down; } Mod+Up { focus-window-up; } diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf new file mode 100644 index 0000000..353f033 --- /dev/null +++ b/config/tmux/tmux.conf @@ -0,0 +1,28 @@ +unbind -a -T root +bind -n M-r source-file ~/.config/tmux/tmux.conf \; display "reloaded" + +set -g mouse on +set -g history-limit 2000 +bind -n M-n new-window +bind -n M-d detach +bind -n M-Q confirm-before -p "Kill entire session? (y/n)" kill-session +bind -n M-o ls +bind -n M-2 next +bind -n M-1 prev +bind -n M-b splitw -v +bind -n M-v splitw -h +bind -n M-l select-pane -R +bind -n M-h select-pane -L +bind -n M-k select-pane -U +bind -n M-j select-pane -D + +bind -n M-H resize-pane -L 5 +bind -n M-L resize-pane -R 5 +bind -n M-K resize-pane -U 3 +bind -n M-J resize-pane -D 3 +bind -n M-q kill-window + +bind -n M-p breakp +bind -n M-c kill-pane +bind -n M-t choose-tree -wZ +bind -n M-q confirm-before -p "Kill entire window? (y/n)" kill-window diff --git a/nix-packages.md b/nix-packages.md new file mode 100644 index 0000000..e528575 --- /dev/null +++ b/nix-packages.md @@ -0,0 +1,7 @@ +Name: ayugram-desktop +Name: gnome-panel +Name: jolt +Name: llmfit +Name: nix +Name: tg +Name: tg-1 diff --git a/apps-list.md b/pacman-packages.md similarity index 100% rename from apps-list.md rename to pacman-packages.md