├── .DS_Store ├── .i3 └── config ├── .luarc.json ├── .tmux.conf ├── .wezterm.lua ├── .zshrc ├── README.md ├── aerospace └── aerospace.toml ├── bin ├── cava.sh ├── notify.sh └── record.sh ├── chadwm ├── .xinitrc ├── config.h └── theme.h ├── dunst └── dunstrc ├── fuzzel ├── fuzzel.ini └── fuzzel_theme.ini ├── ghostty ├── config └── themes │ └── everforest-dark ├── helix ├── config.toml └── languages.toml ├── hypr ├── hypridle.conf ├── hyprland.conf ├── hyprlock.conf ├── hyprpaper.conf ├── nvidia.conf ├── scripts │ └── xdg.sh ├── windowrules.conf └── xdg-portal.sh ├── nvim ├── .github │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE │ │ ├── feature.md │ │ └── plugin.md │ ├── README.md │ └── workflows │ │ └── stale.yml ├── .gitignore ├── .ignore ├── .stylua.toml ├── init.lua ├── lua │ ├── core │ │ ├── autocmds.lua │ │ ├── keymaps.lua │ │ └── options.lua │ └── plugins │ │ ├── avante.lua │ │ ├── blink.lua │ │ ├── bufferline.lua │ │ ├── conform.lua │ │ ├── copilot.lua │ │ ├── fzf.lua │ │ ├── grug-far.lua │ │ ├── hop.lua │ │ ├── indent-blankline.lua │ │ ├── init.lua │ │ ├── lspconfig │ │ ├── backup │ │ ├── configs.lua │ │ └── init.lua │ │ ├── luasnip.lua │ │ ├── minifiles.lua │ │ ├── nvim-lint.lua │ │ ├── preview.lua │ │ ├── theme.lua │ │ ├── tmux.lua │ │ ├── treesitter.lua │ │ └── ufo.lua └── zed │ └── zed.json ├── sketchybar ├── bar.lua ├── colors.lua ├── colors.sh ├── colors_catppuccin.lua ├── default.lua ├── helpers │ ├── .gitignore │ ├── app_icons.lua │ ├── default_font.lua │ ├── event_providers │ │ ├── cpu_load │ │ │ ├── cpu.h │ │ │ ├── cpu_load.c │ │ │ └── makefile │ │ ├── makefile │ │ ├── network_load │ │ │ ├── makefile │ │ │ ├── network.h │ │ │ └── network_load.c │ │ └── sketchybar.h │ ├── init.lua │ ├── install.sh │ ├── makefile │ └── menus │ │ ├── makefile │ │ └── menus.c ├── icons.lua ├── icons.sh ├── init.lua ├── items │ ├── aerospace.lua │ ├── apple.lua │ ├── apple.sh │ ├── apps.lua │ ├── calendar.lua │ ├── calendar.sh │ ├── cpu.sh │ ├── front_app.lua │ ├── front_app.sh │ ├── front_apps.lua │ ├── github.sh │ ├── init.lua │ ├── mail.sh │ ├── media.lua │ ├── menus.lua │ ├── messages.lua │ ├── network_ssid.sh │ ├── power.sh │ ├── spaces.lua │ ├── spaces.sh │ └── widgets │ │ ├── battery.lua │ │ ├── brew.lua │ │ ├── cpu.lua │ │ ├── init.lua │ │ ├── mic.lua │ │ ├── ram.lua │ │ ├── ssd.lua │ │ ├── volume.lua │ │ ├── weather.lua │ │ └── wifi.lua ├── plugins │ ├── cpu.sh │ ├── front_app.sh │ ├── github.sh │ ├── mail.sh │ ├── networkـssid.sh │ ├── power.sh │ └── time.sh ├── settings.lua └── sketchybarrc ├── starship.toml ├── vscode ├── keybindings.json └── settings.json ├── wallpapers ├── 32099104.jpeg ├── 4259846_91284.jpg ├── 4264977_91352.jpg ├── cat_leaves.png └── japan.jpg ├── waybar ├── config.jsonc └── style.css ├── wlogout ├── layout └── style.css └── zed ├── keymap.json └── settings.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/.DS_Store -------------------------------------------------------------------------------- /.i3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/.i3/config -------------------------------------------------------------------------------- /.luarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/.luarc.json -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.wezterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/.wezterm.lua -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /aerospace/aerospace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/aerospace/aerospace.toml -------------------------------------------------------------------------------- /bin/cava.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/bin/cava.sh -------------------------------------------------------------------------------- /bin/notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/bin/notify.sh -------------------------------------------------------------------------------- /bin/record.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/bin/record.sh -------------------------------------------------------------------------------- /chadwm/.xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/chadwm/.xinitrc -------------------------------------------------------------------------------- /chadwm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/chadwm/config.h -------------------------------------------------------------------------------- /chadwm/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/chadwm/theme.h -------------------------------------------------------------------------------- /dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/dunst/dunstrc -------------------------------------------------------------------------------- /fuzzel/fuzzel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/fuzzel/fuzzel.ini -------------------------------------------------------------------------------- /fuzzel/fuzzel_theme.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/fuzzel/fuzzel_theme.ini -------------------------------------------------------------------------------- /ghostty/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/ghostty/config -------------------------------------------------------------------------------- /ghostty/themes/everforest-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/ghostty/themes/everforest-dark -------------------------------------------------------------------------------- /helix/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/helix/config.toml -------------------------------------------------------------------------------- /helix/languages.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/helix/languages.toml -------------------------------------------------------------------------------- /hypr/hypridle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/hypr/hypridle.conf -------------------------------------------------------------------------------- /hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/hypr/hyprland.conf -------------------------------------------------------------------------------- /hypr/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/hypr/hyprlock.conf -------------------------------------------------------------------------------- /hypr/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/hypr/hyprpaper.conf -------------------------------------------------------------------------------- /hypr/nvidia.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/hypr/nvidia.conf -------------------------------------------------------------------------------- /hypr/scripts/xdg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/hypr/scripts/xdg.sh -------------------------------------------------------------------------------- /hypr/windowrules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/hypr/windowrules.conf -------------------------------------------------------------------------------- /hypr/xdg-portal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/hypr/xdg-portal.sh -------------------------------------------------------------------------------- /nvim/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /nvim/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/.github/FUNDING.yml -------------------------------------------------------------------------------- /nvim/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /nvim/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /nvim/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /nvim/.github/PULL_REQUEST_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/.github/PULL_REQUEST_TEMPLATE/feature.md -------------------------------------------------------------------------------- /nvim/.github/PULL_REQUEST_TEMPLATE/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/.github/PULL_REQUEST_TEMPLATE/plugin.md -------------------------------------------------------------------------------- /nvim/.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/.github/README.md -------------------------------------------------------------------------------- /nvim/.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/.github/workflows/stale.yml -------------------------------------------------------------------------------- /nvim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/.gitignore -------------------------------------------------------------------------------- /nvim/.ignore: -------------------------------------------------------------------------------- 1 | !/lua/custom/ 2 | -------------------------------------------------------------------------------- /nvim/.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/.stylua.toml -------------------------------------------------------------------------------- /nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/init.lua -------------------------------------------------------------------------------- /nvim/lua/core/autocmds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/core/autocmds.lua -------------------------------------------------------------------------------- /nvim/lua/core/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/core/keymaps.lua -------------------------------------------------------------------------------- /nvim/lua/core/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/core/options.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/avante.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/avante.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/blink.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/blink.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/bufferline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/bufferline.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/conform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/conform.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/copilot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/copilot.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/fzf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/fzf.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/grug-far.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/grug-far.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/hop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/hop.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/indent-blankline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/indent-blankline.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/init.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/lspconfig/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/lspconfig/backup -------------------------------------------------------------------------------- /nvim/lua/plugins/lspconfig/configs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/lspconfig/configs.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/lspconfig/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/lspconfig/init.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/luasnip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/luasnip.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/minifiles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/minifiles.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/nvim-lint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/nvim-lint.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/preview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/preview.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/theme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/theme.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/tmux.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/tmux.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/treesitter.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/ufo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/lua/plugins/ufo.lua -------------------------------------------------------------------------------- /nvim/zed/zed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/nvim/zed/zed.json -------------------------------------------------------------------------------- /sketchybar/bar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/bar.lua -------------------------------------------------------------------------------- /sketchybar/colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/colors.lua -------------------------------------------------------------------------------- /sketchybar/colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/colors.sh -------------------------------------------------------------------------------- /sketchybar/colors_catppuccin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/colors_catppuccin.lua -------------------------------------------------------------------------------- /sketchybar/default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/default.lua -------------------------------------------------------------------------------- /sketchybar/helpers/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | -------------------------------------------------------------------------------- /sketchybar/helpers/app_icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/app_icons.lua -------------------------------------------------------------------------------- /sketchybar/helpers/default_font.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/default_font.lua -------------------------------------------------------------------------------- /sketchybar/helpers/event_providers/cpu_load/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/event_providers/cpu_load/cpu.h -------------------------------------------------------------------------------- /sketchybar/helpers/event_providers/cpu_load/cpu_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/event_providers/cpu_load/cpu_load.c -------------------------------------------------------------------------------- /sketchybar/helpers/event_providers/cpu_load/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/event_providers/cpu_load/makefile -------------------------------------------------------------------------------- /sketchybar/helpers/event_providers/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/event_providers/makefile -------------------------------------------------------------------------------- /sketchybar/helpers/event_providers/network_load/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/event_providers/network_load/makefile -------------------------------------------------------------------------------- /sketchybar/helpers/event_providers/network_load/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/event_providers/network_load/network.h -------------------------------------------------------------------------------- /sketchybar/helpers/event_providers/network_load/network_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/event_providers/network_load/network_load.c -------------------------------------------------------------------------------- /sketchybar/helpers/event_providers/sketchybar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/event_providers/sketchybar.h -------------------------------------------------------------------------------- /sketchybar/helpers/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/init.lua -------------------------------------------------------------------------------- /sketchybar/helpers/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/install.sh -------------------------------------------------------------------------------- /sketchybar/helpers/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/makefile -------------------------------------------------------------------------------- /sketchybar/helpers/menus/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/menus/makefile -------------------------------------------------------------------------------- /sketchybar/helpers/menus/menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/helpers/menus/menus.c -------------------------------------------------------------------------------- /sketchybar/icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/icons.lua -------------------------------------------------------------------------------- /sketchybar/icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/icons.sh -------------------------------------------------------------------------------- /sketchybar/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/init.lua -------------------------------------------------------------------------------- /sketchybar/items/aerospace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/aerospace.lua -------------------------------------------------------------------------------- /sketchybar/items/apple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/apple.lua -------------------------------------------------------------------------------- /sketchybar/items/apple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/apple.sh -------------------------------------------------------------------------------- /sketchybar/items/apps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/apps.lua -------------------------------------------------------------------------------- /sketchybar/items/calendar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/calendar.lua -------------------------------------------------------------------------------- /sketchybar/items/calendar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/calendar.sh -------------------------------------------------------------------------------- /sketchybar/items/cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/cpu.sh -------------------------------------------------------------------------------- /sketchybar/items/front_app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/front_app.lua -------------------------------------------------------------------------------- /sketchybar/items/front_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/front_app.sh -------------------------------------------------------------------------------- /sketchybar/items/front_apps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/front_apps.lua -------------------------------------------------------------------------------- /sketchybar/items/github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/github.sh -------------------------------------------------------------------------------- /sketchybar/items/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/init.lua -------------------------------------------------------------------------------- /sketchybar/items/mail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/mail.sh -------------------------------------------------------------------------------- /sketchybar/items/media.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/media.lua -------------------------------------------------------------------------------- /sketchybar/items/menus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/menus.lua -------------------------------------------------------------------------------- /sketchybar/items/messages.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/messages.lua -------------------------------------------------------------------------------- /sketchybar/items/network_ssid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/network_ssid.sh -------------------------------------------------------------------------------- /sketchybar/items/power.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/power.sh -------------------------------------------------------------------------------- /sketchybar/items/spaces.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/spaces.lua -------------------------------------------------------------------------------- /sketchybar/items/spaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/spaces.sh -------------------------------------------------------------------------------- /sketchybar/items/widgets/battery.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/widgets/battery.lua -------------------------------------------------------------------------------- /sketchybar/items/widgets/brew.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/widgets/brew.lua -------------------------------------------------------------------------------- /sketchybar/items/widgets/cpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/widgets/cpu.lua -------------------------------------------------------------------------------- /sketchybar/items/widgets/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/widgets/init.lua -------------------------------------------------------------------------------- /sketchybar/items/widgets/mic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/widgets/mic.lua -------------------------------------------------------------------------------- /sketchybar/items/widgets/ram.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/widgets/ram.lua -------------------------------------------------------------------------------- /sketchybar/items/widgets/ssd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/widgets/ssd.lua -------------------------------------------------------------------------------- /sketchybar/items/widgets/volume.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/widgets/volume.lua -------------------------------------------------------------------------------- /sketchybar/items/widgets/weather.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/widgets/weather.lua -------------------------------------------------------------------------------- /sketchybar/items/widgets/wifi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/items/widgets/wifi.lua -------------------------------------------------------------------------------- /sketchybar/plugins/cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/plugins/cpu.sh -------------------------------------------------------------------------------- /sketchybar/plugins/front_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/plugins/front_app.sh -------------------------------------------------------------------------------- /sketchybar/plugins/github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/plugins/github.sh -------------------------------------------------------------------------------- /sketchybar/plugins/mail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/plugins/mail.sh -------------------------------------------------------------------------------- /sketchybar/plugins/networkـssid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/plugins/networkـssid.sh -------------------------------------------------------------------------------- /sketchybar/plugins/power.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/plugins/power.sh -------------------------------------------------------------------------------- /sketchybar/plugins/time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/plugins/time.sh -------------------------------------------------------------------------------- /sketchybar/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/settings.lua -------------------------------------------------------------------------------- /sketchybar/sketchybarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/sketchybar/sketchybarrc -------------------------------------------------------------------------------- /starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/starship.toml -------------------------------------------------------------------------------- /vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/vscode/keybindings.json -------------------------------------------------------------------------------- /vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/vscode/settings.json -------------------------------------------------------------------------------- /wallpapers/32099104.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/wallpapers/32099104.jpeg -------------------------------------------------------------------------------- /wallpapers/4259846_91284.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/wallpapers/4259846_91284.jpg -------------------------------------------------------------------------------- /wallpapers/4264977_91352.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/wallpapers/4264977_91352.jpg -------------------------------------------------------------------------------- /wallpapers/cat_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/wallpapers/cat_leaves.png -------------------------------------------------------------------------------- /wallpapers/japan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/wallpapers/japan.jpg -------------------------------------------------------------------------------- /waybar/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/waybar/config.jsonc -------------------------------------------------------------------------------- /waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/waybar/style.css -------------------------------------------------------------------------------- /wlogout/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/wlogout/layout -------------------------------------------------------------------------------- /wlogout/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/wlogout/style.css -------------------------------------------------------------------------------- /zed/keymap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/zed/keymap.json -------------------------------------------------------------------------------- /zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynhan318/dotfiles/HEAD/zed/settings.json --------------------------------------------------------------------------------