├── LICENSE ├── README.md ├── aur.txt ├── bin ├── audio_pkgs.txt ├── audio_setup.sh ├── networking_pkgs.txt └── networking_setup.sh ├── compositors ├── default │ └── picom.conf └── jonaburg │ └── picom.conf ├── configs ├── bpytop │ ├── bpytop.conf │ └── error.log ├── bspwm │ ├── .fehbg │ ├── alacritty │ │ ├── alacritty.yml │ │ ├── colors.yml │ │ ├── colorschemes │ │ │ ├── Afterglow.yaml │ │ │ ├── Argonaut.yaml │ │ │ ├── Ayu_dark.yaml │ │ │ ├── Base16_default_dark.yaml │ │ │ ├── Blood_moon.yaml │ │ │ ├── Breeze.yaml │ │ │ ├── Bright.yml │ │ │ ├── Campbell.yaml │ │ │ ├── Challenger_deep.yaml │ │ │ ├── Cobalt2.yaml │ │ │ ├── Cyber_punk_neon.yaml │ │ │ ├── Dark_pastels.yaml │ │ │ ├── Dawn.yml │ │ │ ├── Default.yaml │ │ │ ├── Doom_one.yml │ │ │ ├── Dracula.yaml │ │ │ ├── Erosion.yml │ │ │ ├── Falcon.yaml │ │ │ ├── Flat_remix.yml │ │ │ ├── Gotham.yaml │ │ │ ├── Gruvbox_dark.yaml │ │ │ ├── Gruvbox_light.yaml │ │ │ ├── Gruvbox_material.yml │ │ │ ├── High_contrast.yaml │ │ │ ├── Horizon_dark.yaml │ │ │ ├── Hund.yml │ │ │ ├── Hybrid.yml │ │ │ ├── Hyper.yaml │ │ │ ├── Invisibone.yml │ │ │ ├── Iterm.yaml │ │ │ ├── Jmbi.yml │ │ │ ├── Kasugano.yml │ │ │ ├── Konsole_linux.yaml │ │ │ ├── Low_contrast.yaml │ │ │ ├── Material_theme.yaml │ │ │ ├── Material_theme_mod.yaml │ │ │ ├── Monokai.yml │ │ │ ├── Navy.yml │ │ │ ├── Nord.yaml │ │ │ ├── Oceanic_next.yaml │ │ │ ├── Omni.yml │ │ │ ├── One_dark.yaml │ │ │ ├── Palenight.yml │ │ │ ├── Papercolor_light.yaml │ │ │ ├── Pastel.yml │ │ │ ├── Pencil_dark.yaml │ │ │ ├── Pencil_light.yaml │ │ │ ├── Remedy_dark.yaml │ │ │ ├── Snazzy.yaml │ │ │ ├── Solarized_dark.yaml │ │ │ ├── Solarized_light.yaml │ │ │ ├── Sweetlove.yml │ │ │ ├── Taerminal.yaml │ │ │ ├── Tango_dark.yaml │ │ │ ├── Tender.yaml │ │ │ ├── Terminal_app.yaml │ │ │ ├── Thelovelace.yaml │ │ │ ├── Tokyo_night.yaml │ │ │ ├── Tokyo_night_storm.yaml │ │ │ ├── Tomorrow_night.yaml │ │ │ ├── Tomorrow_night_bright.yaml │ │ │ ├── Vacuous.yml │ │ │ ├── Visibone.yml │ │ │ ├── Wombat.yaml │ │ │ ├── Xterm.yaml │ │ │ └── Yousai.yml │ │ ├── fonts.yml │ │ └── fullscreen.yml │ └── bspwmrc ├── cava │ └── config ├── dunst │ ├── dunstrc │ └── sid ├── geany │ ├── colorschemes │ │ ├── bespin.conf │ │ ├── black.conf │ │ ├── darcula.conf │ │ ├── dark-colors.conf │ │ ├── dark-fruit-salad.conf │ │ ├── dark.conf │ │ ├── default.conf │ │ ├── delt-dark.conf │ │ ├── epsilon.conf │ │ ├── fluffy.conf │ │ ├── forest.conf │ │ ├── gedit.conf │ │ ├── github.conf │ │ ├── himbeere.conf │ │ ├── inkpot.conf │ │ ├── kugel.conf │ │ ├── manhattan.conf │ │ ├── mc.conf │ │ ├── metallic-bottle.conf │ │ ├── monokai.conf │ │ ├── nordic.conf │ │ ├── notepad-plus-plus.conf │ │ ├── oblivion2.conf │ │ ├── pygments.conf │ │ ├── railcasts2.conf │ │ ├── retro.conf │ │ ├── sleepy-pastel.conf │ │ ├── slime.conf │ │ ├── slushpoppies.conf │ │ ├── solarized-dark.conf │ │ ├── solarized-light.conf │ │ ├── spark.conf │ │ ├── spyder-dark.conf │ │ ├── steampunk.conf │ │ ├── tango-dark.conf │ │ ├── tango-light.conf │ │ ├── tinge.conf │ │ ├── ubuntu.conf │ │ ├── vibrant-ink.conf │ │ ├── wave.conf │ │ └── zenburn.conf │ └── geany.conf ├── gtk-2.0 │ └── gtkfilechooser.ini ├── gtk-3.0 │ ├── gtk.css │ └── settings.ini ├── networkmanager-dmenu │ └── config.ini ├── pcmanfm │ └── default │ │ └── pcmanfm.conf ├── polybar │ ├── forest │ │ ├── bars.ini │ │ ├── colors.ini │ │ ├── config.ini │ │ ├── launch.sh │ │ ├── modules.ini │ │ ├── preview.ini │ │ ├── preview.sh │ │ ├── scripts │ │ │ ├── checkupdates │ │ │ ├── get_spotify_status.sh │ │ │ ├── info-cava.py │ │ │ ├── launcher.sh │ │ │ ├── mpd │ │ │ ├── powermenu.sh │ │ │ ├── rofi │ │ │ │ ├── colors.rasi │ │ │ │ ├── confirm.rasi │ │ │ │ ├── launcher.rasi │ │ │ │ ├── message.rasi │ │ │ │ ├── mpd.rasi │ │ │ │ ├── networkmenu.rasi │ │ │ │ ├── powermenu.rasi │ │ │ │ ├── screenshot.rasi │ │ │ │ └── styles.rasi │ │ │ ├── screenshot │ │ │ ├── scroll_spotify_status.sh │ │ │ ├── spotify.sh │ │ │ ├── style-switch.sh │ │ │ ├── styles.sh │ │ │ └── updates.sh │ │ └── user_modules.ini │ └── launch.sh ├── ranger │ ├── colorschemes │ │ ├── default.py │ │ ├── jungle.py │ │ └── snow.py │ ├── commands.py │ ├── rc.conf │ ├── rifle.conf │ └── scope.sh ├── sxhkd │ └── sxhkdrc └── xfce4 │ └── terminal │ ├── accels.scm │ ├── terminal │ ├── accels.scm │ └── terminalrc │ └── terminalrc ├── dots ├── .dmrc ├── .gtkrc-2.0 ├── .hushlogin ├── .mpd │ ├── mpd.conf │ ├── mpd.db │ ├── mpd.pid │ └── mpdstate ├── .ncmpcpp │ └── config ├── .vimrc └── .xinitrc ├── fonts ├── fantasque_sans_mono.ttf ├── feather.ttf ├── iosevka_nerd_font.ttf ├── material_design_iconic_font.ttf ├── panels │ ├── droid_sans.ttf │ ├── icomoon_feather.ttf │ ├── material.ttf │ └── noto_sans.ttf ├── terminus │ ├── ter-u12b.otb │ ├── ter-u12n.otb │ ├── ter-u14b.otb │ ├── ter-u14n.otb │ ├── ter-u14v.otb │ ├── ter-u16b.otb │ ├── ter-u16n.otb │ ├── ter-u16v.otb │ ├── ter-u18b.otb │ ├── ter-u18n.otb │ ├── ter-u20b.otb │ ├── ter-u20n.otb │ ├── ter-u22b.otb │ ├── ter-u22n.otb │ ├── ter-u24b.otb │ ├── ter-u24n.otb │ ├── ter-u28b.otb │ ├── ter-u28n.otb │ ├── ter-u32b.otb │ └── ter-u32n.otb └── waffle.bdf ├── grubcfg ├── grub ├── grubd │ ├── 10_linux │ └── 30_uefi-firmware └── themes │ └── default │ ├── DejaVuSans.ttf │ ├── background.jpg │ ├── dejavu_32.pf2 │ ├── dejavu_sans_12.pf2 │ ├── dejavu_sans_14.pf2 │ ├── dejavu_sans_16.pf2 │ ├── dejavu_sans_24.pf2 │ ├── dejavu_sans_48.pf2 │ ├── icons │ ├── Manjaro.i686.png │ ├── Manjaro.x86_64.png │ ├── antergos.png │ ├── arch.png │ ├── archcraft.png │ ├── archlinux.png │ ├── arcolinux.png │ ├── cancel.png │ ├── chakra.png │ ├── debian.png │ ├── deepin.png │ ├── devuan.png │ ├── driver.png │ ├── edit.png │ ├── efi.png │ ├── elementary.png │ ├── endeavouros.png │ ├── fedora.png │ ├── find.efi.png │ ├── find.none.png │ ├── gentoo.png │ ├── gnu-linux.png │ ├── help.png │ ├── kali.png │ ├── kaos.png │ ├── kbd.png │ ├── korora.png │ ├── kubuntu.png │ ├── lang.png │ ├── lfs.png │ ├── linux.png │ ├── linuxmint.png │ ├── lubuntu.png │ ├── macosx.png │ ├── mageia.png │ ├── manjaro.png │ ├── memtest.png │ ├── opensuse.png │ ├── pop-os.png │ ├── recovery.png │ ├── restart.png │ ├── shutdown.png │ ├── siduction.png │ ├── solus.png │ ├── steamos.png │ ├── type.png │ ├── tz.png │ ├── ubuntu.png │ ├── unknown.png │ ├── unset.png │ ├── void.png │ ├── windows.png │ └── xubuntu.png │ ├── select_c.png │ ├── select_e.png │ ├── select_w.png │ ├── terminal_box_c.png │ ├── terminal_box_e.png │ ├── terminal_box_n.png │ ├── terminal_box_ne.png │ ├── terminal_box_nw.png │ ├── terminal_box_s.png │ ├── terminal_box_se.png │ ├── terminal_box_sw.png │ ├── terminal_box_w.png │ ├── terminus-12.pf2 │ ├── terminus-14.pf2 │ ├── terminus-16.pf2 │ ├── terminus-18.pf2 │ └── theme.txt ├── images ├── Screenshot_2021-08-02-20_1920x1080.png ├── Screenshot_2021-08-23-12_1280x800.png ├── Screenshot_2021-08-23-34_1280x800.png ├── Screenshot_2021-08-23-44_1280x800.png └── lxdm.png ├── install.sh ├── lxdm ├── lxdm-theme │ └── Default │ │ ├── bg.jpg │ │ ├── greeter-gtk3.ui │ │ ├── greeter.ui │ │ ├── gtk.css │ │ ├── gtkrc │ │ ├── index.theme │ │ ├── keyboard.svg │ │ ├── lang.svg │ │ ├── nobody.png │ │ ├── quit.svg │ │ ├── session-alt.svg │ │ └── session.svg └── lxdm.conf ├── packages.txt ├── recommended_aur.txt ├── recommended_packages.txt ├── scripts ├── backlight ├── backlight-down ├── backlight-up ├── color_picker ├── kunst ├── lock ├── update ├── visualizer ├── volume ├── volume-down ├── volume-up └── ytd ├── shells ├── bash │ └── .bashrc ├── fish │ └── config.fish └── zsh │ └── .zshrc ├── songs ├── Cartoon - Why We Lose (feat. Coleman Trapp) _NCS Release_.mp3 ├── Janji - Heroes Tonight (feat. Johnning) _NCS Release_.mp3 ├── Max Brhon - Cyberpunk [NCS Release].mp3 └── Warriyo - Mortals (feat. Laura Brehm).mp3 ├── systemfiles ├── 01_pw_feedback ├── 02-touchpad-ttc.conf ├── mkinitcpio.conf └── pacman.conf └── wallpapers ├── bg_0.png ├── bg_1.jpg ├── bg_2.jpg ├── bg_3.jpg ├── bg_4.png ├── bg_5.jpg ├── bg_6.jpg ├── bg_7.jpg ├── bg_8.jpg ├── bg_9.jpg ├── wal_1.jpg ├── wal_10.jpg ├── wal_11.jpg ├── wal_12.jpg ├── wal_13.jpg ├── wal_14.jpg ├── wal_2.jpg ├── wal_3.jpg ├── wal_4.jpg ├── wal_5.jpg ├── wal_6.jpg ├── wal_7.jpg ├── wal_8.jpg └── wal_9.jpg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/README.md -------------------------------------------------------------------------------- /aur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/aur.txt -------------------------------------------------------------------------------- /bin/audio_pkgs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/bin/audio_pkgs.txt -------------------------------------------------------------------------------- /bin/audio_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/bin/audio_setup.sh -------------------------------------------------------------------------------- /bin/networking_pkgs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/bin/networking_pkgs.txt -------------------------------------------------------------------------------- /bin/networking_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/bin/networking_setup.sh -------------------------------------------------------------------------------- /compositors/default/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/compositors/default/picom.conf -------------------------------------------------------------------------------- /compositors/jonaburg/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/compositors/jonaburg/picom.conf -------------------------------------------------------------------------------- /configs/bpytop/bpytop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bpytop/bpytop.conf -------------------------------------------------------------------------------- /configs/bpytop/error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/bspwm/.fehbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/.fehbg -------------------------------------------------------------------------------- /configs/bspwm/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/alacritty.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colors.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Afterglow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Afterglow.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Argonaut.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Argonaut.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Ayu_dark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Ayu_dark.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Base16_default_dark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Base16_default_dark.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Blood_moon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Blood_moon.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Breeze.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Breeze.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Bright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Bright.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Campbell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Campbell.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Challenger_deep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Challenger_deep.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Cobalt2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Cobalt2.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Cyber_punk_neon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Cyber_punk_neon.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Dark_pastels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Dark_pastels.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Dawn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Dawn.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Default.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Doom_one.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Doom_one.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Dracula.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Dracula.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Erosion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Erosion.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Falcon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Falcon.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Flat_remix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Flat_remix.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Gotham.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Gotham.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Gruvbox_dark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Gruvbox_dark.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Gruvbox_light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Gruvbox_light.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Gruvbox_material.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Gruvbox_material.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/High_contrast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/High_contrast.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Horizon_dark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Horizon_dark.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Hund.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Hund.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Hybrid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Hybrid.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Hyper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Hyper.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Invisibone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Invisibone.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Iterm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Iterm.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Jmbi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Jmbi.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Kasugano.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Kasugano.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Konsole_linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Konsole_linux.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Low_contrast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Low_contrast.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Material_theme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Material_theme.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Material_theme_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Material_theme_mod.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Monokai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Monokai.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Navy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Navy.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Nord.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Nord.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Oceanic_next.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Oceanic_next.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Omni.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Omni.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/One_dark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/One_dark.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Palenight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Palenight.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Papercolor_light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Papercolor_light.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Pastel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Pastel.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Pencil_dark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Pencil_dark.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Pencil_light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Pencil_light.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Remedy_dark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Remedy_dark.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Snazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Snazzy.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Solarized_dark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Solarized_dark.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Solarized_light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Solarized_light.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Sweetlove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Sweetlove.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Taerminal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Taerminal.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Tango_dark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Tango_dark.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Tender.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Tender.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Terminal_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Terminal_app.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Thelovelace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Thelovelace.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Tokyo_night.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Tokyo_night.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Tokyo_night_storm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Tokyo_night_storm.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Tomorrow_night.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Tomorrow_night.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Tomorrow_night_bright.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Tomorrow_night_bright.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Vacuous.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Vacuous.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Visibone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Visibone.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Wombat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Wombat.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Xterm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Xterm.yaml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/colorschemes/Yousai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/colorschemes/Yousai.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/fonts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/fonts.yml -------------------------------------------------------------------------------- /configs/bspwm/alacritty/fullscreen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/alacritty/fullscreen.yml -------------------------------------------------------------------------------- /configs/bspwm/bspwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/bspwm/bspwmrc -------------------------------------------------------------------------------- /configs/cava/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/cava/config -------------------------------------------------------------------------------- /configs/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/dunst/dunstrc -------------------------------------------------------------------------------- /configs/dunst/sid: -------------------------------------------------------------------------------- 1 | Dark 2 | -------------------------------------------------------------------------------- /configs/geany/colorschemes/bespin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/bespin.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/black.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/black.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/darcula.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/darcula.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/dark-colors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/dark-colors.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/dark-fruit-salad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/dark-fruit-salad.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/dark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/dark.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/default.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/delt-dark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/delt-dark.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/epsilon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/epsilon.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/fluffy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/fluffy.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/forest.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/forest.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/gedit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/gedit.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/github.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/github.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/himbeere.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/himbeere.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/inkpot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/inkpot.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/kugel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/kugel.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/manhattan.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/manhattan.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/mc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/mc.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/metallic-bottle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/metallic-bottle.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/monokai.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/monokai.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/nordic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/nordic.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/notepad-plus-plus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/notepad-plus-plus.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/oblivion2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/oblivion2.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/pygments.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/pygments.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/railcasts2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/railcasts2.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/retro.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/retro.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/sleepy-pastel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/sleepy-pastel.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/slime.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/slime.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/slushpoppies.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/slushpoppies.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/solarized-dark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/solarized-dark.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/solarized-light.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/solarized-light.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/spark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/spark.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/spyder-dark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/spyder-dark.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/steampunk.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/steampunk.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/tango-dark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/tango-dark.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/tango-light.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/tango-light.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/tinge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/tinge.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/ubuntu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/ubuntu.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/vibrant-ink.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/vibrant-ink.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/wave.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/wave.conf -------------------------------------------------------------------------------- /configs/geany/colorschemes/zenburn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/colorschemes/zenburn.conf -------------------------------------------------------------------------------- /configs/geany/geany.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/geany/geany.conf -------------------------------------------------------------------------------- /configs/gtk-2.0/gtkfilechooser.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/gtk-2.0/gtkfilechooser.ini -------------------------------------------------------------------------------- /configs/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /configs/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /configs/networkmanager-dmenu/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/networkmanager-dmenu/config.ini -------------------------------------------------------------------------------- /configs/pcmanfm/default/pcmanfm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/pcmanfm/default/pcmanfm.conf -------------------------------------------------------------------------------- /configs/polybar/forest/bars.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/bars.ini -------------------------------------------------------------------------------- /configs/polybar/forest/colors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/colors.ini -------------------------------------------------------------------------------- /configs/polybar/forest/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/config.ini -------------------------------------------------------------------------------- /configs/polybar/forest/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/launch.sh -------------------------------------------------------------------------------- /configs/polybar/forest/modules.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/modules.ini -------------------------------------------------------------------------------- /configs/polybar/forest/preview.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/preview.ini -------------------------------------------------------------------------------- /configs/polybar/forest/preview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/preview.sh -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/checkupdates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/checkupdates -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/get_spotify_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/get_spotify_status.sh -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/info-cava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/info-cava.py -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/launcher.sh -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/mpd -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/powermenu.sh -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/rofi/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/rofi/colors.rasi -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/rofi/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/rofi/confirm.rasi -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/rofi/launcher.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/rofi/launcher.rasi -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/rofi/message.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/rofi/message.rasi -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/rofi/mpd.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/rofi/mpd.rasi -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/rofi/networkmenu.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/rofi/networkmenu.rasi -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/rofi/powermenu.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/rofi/powermenu.rasi -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/rofi/screenshot.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/rofi/screenshot.rasi -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/rofi/styles.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/rofi/styles.rasi -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/screenshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/screenshot -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/scroll_spotify_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/scroll_spotify_status.sh -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/spotify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/spotify.sh -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/style-switch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/style-switch.sh -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/styles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/styles.sh -------------------------------------------------------------------------------- /configs/polybar/forest/scripts/updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/scripts/updates.sh -------------------------------------------------------------------------------- /configs/polybar/forest/user_modules.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/forest/user_modules.ini -------------------------------------------------------------------------------- /configs/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/polybar/launch.sh -------------------------------------------------------------------------------- /configs/ranger/colorschemes/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/ranger/colorschemes/default.py -------------------------------------------------------------------------------- /configs/ranger/colorschemes/jungle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/ranger/colorschemes/jungle.py -------------------------------------------------------------------------------- /configs/ranger/colorschemes/snow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/ranger/colorschemes/snow.py -------------------------------------------------------------------------------- /configs/ranger/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/ranger/commands.py -------------------------------------------------------------------------------- /configs/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/ranger/rc.conf -------------------------------------------------------------------------------- /configs/ranger/rifle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/ranger/rifle.conf -------------------------------------------------------------------------------- /configs/ranger/scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/ranger/scope.sh -------------------------------------------------------------------------------- /configs/sxhkd/sxhkdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/sxhkd/sxhkdrc -------------------------------------------------------------------------------- /configs/xfce4/terminal/accels.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/xfce4/terminal/accels.scm -------------------------------------------------------------------------------- /configs/xfce4/terminal/terminal/accels.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/xfce4/terminal/terminal/accels.scm -------------------------------------------------------------------------------- /configs/xfce4/terminal/terminal/terminalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/xfce4/terminal/terminal/terminalrc -------------------------------------------------------------------------------- /configs/xfce4/terminal/terminalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/configs/xfce4/terminal/terminalrc -------------------------------------------------------------------------------- /dots/.dmrc: -------------------------------------------------------------------------------- 1 | [Desktop] 2 | Session=bspwm 3 | -------------------------------------------------------------------------------- /dots/.gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/dots/.gtkrc-2.0 -------------------------------------------------------------------------------- /dots/.hushlogin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dots/.mpd/mpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/dots/.mpd/mpd.conf -------------------------------------------------------------------------------- /dots/.mpd/mpd.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/dots/.mpd/mpd.db -------------------------------------------------------------------------------- /dots/.mpd/mpd.pid: -------------------------------------------------------------------------------- 1 | 732 2 | -------------------------------------------------------------------------------- /dots/.mpd/mpdstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/dots/.mpd/mpdstate -------------------------------------------------------------------------------- /dots/.ncmpcpp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/dots/.ncmpcpp/config -------------------------------------------------------------------------------- /dots/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/dots/.vimrc -------------------------------------------------------------------------------- /dots/.xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/dots/.xinitrc -------------------------------------------------------------------------------- /fonts/fantasque_sans_mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/fantasque_sans_mono.ttf -------------------------------------------------------------------------------- /fonts/feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/feather.ttf -------------------------------------------------------------------------------- /fonts/iosevka_nerd_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/iosevka_nerd_font.ttf -------------------------------------------------------------------------------- /fonts/material_design_iconic_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/material_design_iconic_font.ttf -------------------------------------------------------------------------------- /fonts/panels/droid_sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/panels/droid_sans.ttf -------------------------------------------------------------------------------- /fonts/panels/icomoon_feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/panels/icomoon_feather.ttf -------------------------------------------------------------------------------- /fonts/panels/material.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/panels/material.ttf -------------------------------------------------------------------------------- /fonts/panels/noto_sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/panels/noto_sans.ttf -------------------------------------------------------------------------------- /fonts/terminus/ter-u12b.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u12b.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u12n.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u12n.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u14b.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u14b.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u14n.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u14n.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u14v.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u14v.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u16b.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u16b.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u16n.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u16n.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u16v.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u16v.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u18b.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u18b.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u18n.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u18n.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u20b.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u20b.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u20n.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u20n.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u22b.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u22b.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u22n.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u22n.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u24b.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u24b.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u24n.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u24n.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u28b.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u28b.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u28n.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u28n.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u32b.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u32b.otb -------------------------------------------------------------------------------- /fonts/terminus/ter-u32n.otb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/terminus/ter-u32n.otb -------------------------------------------------------------------------------- /fonts/waffle.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/fonts/waffle.bdf -------------------------------------------------------------------------------- /grubcfg/grub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/grub -------------------------------------------------------------------------------- /grubcfg/grubd/10_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/grubd/10_linux -------------------------------------------------------------------------------- /grubcfg/grubd/30_uefi-firmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/grubd/30_uefi-firmware -------------------------------------------------------------------------------- /grubcfg/themes/default/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/DejaVuSans.ttf -------------------------------------------------------------------------------- /grubcfg/themes/default/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/background.jpg -------------------------------------------------------------------------------- /grubcfg/themes/default/dejavu_32.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/dejavu_32.pf2 -------------------------------------------------------------------------------- /grubcfg/themes/default/dejavu_sans_12.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/dejavu_sans_12.pf2 -------------------------------------------------------------------------------- /grubcfg/themes/default/dejavu_sans_14.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/dejavu_sans_14.pf2 -------------------------------------------------------------------------------- /grubcfg/themes/default/dejavu_sans_16.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/dejavu_sans_16.pf2 -------------------------------------------------------------------------------- /grubcfg/themes/default/dejavu_sans_24.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/dejavu_sans_24.pf2 -------------------------------------------------------------------------------- /grubcfg/themes/default/dejavu_sans_48.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/dejavu_sans_48.pf2 -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/Manjaro.i686.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/Manjaro.i686.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/Manjaro.x86_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/Manjaro.x86_64.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/antergos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/antergos.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/arch.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/archcraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/archcraft.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/archlinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/archlinux.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/arcolinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/arcolinux.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/cancel.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/chakra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/chakra.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/debian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/debian.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/deepin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/deepin.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/devuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/devuan.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/driver.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/edit.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/efi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/efi.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/elementary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/elementary.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/endeavouros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/endeavouros.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/fedora.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/find.efi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/find.efi.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/find.none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/find.none.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/gentoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/gentoo.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/gnu-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/gnu-linux.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/help.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/kali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/kali.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/kaos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/kaos.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/kbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/kbd.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/korora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/korora.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/kubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/kubuntu.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/lang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/lang.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/lfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/lfs.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/linux.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/linuxmint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/linuxmint.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/lubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/lubuntu.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/macosx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/macosx.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/mageia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/mageia.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/manjaro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/manjaro.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/memtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/memtest.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/opensuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/opensuse.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/pop-os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/pop-os.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/recovery.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/restart.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/shutdown.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/siduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/siduction.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/solus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/solus.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/steamos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/steamos.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/type.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/tz.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/ubuntu.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/unknown.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/unset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/unset.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/void.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/void.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/windows.png -------------------------------------------------------------------------------- /grubcfg/themes/default/icons/xubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/icons/xubuntu.png -------------------------------------------------------------------------------- /grubcfg/themes/default/select_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/select_c.png -------------------------------------------------------------------------------- /grubcfg/themes/default/select_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/select_e.png -------------------------------------------------------------------------------- /grubcfg/themes/default/select_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/select_w.png -------------------------------------------------------------------------------- /grubcfg/themes/default/terminal_box_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/terminal_box_c.png -------------------------------------------------------------------------------- /grubcfg/themes/default/terminal_box_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/terminal_box_e.png -------------------------------------------------------------------------------- /grubcfg/themes/default/terminal_box_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/terminal_box_n.png -------------------------------------------------------------------------------- /grubcfg/themes/default/terminal_box_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/terminal_box_ne.png -------------------------------------------------------------------------------- /grubcfg/themes/default/terminal_box_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/terminal_box_nw.png -------------------------------------------------------------------------------- /grubcfg/themes/default/terminal_box_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/terminal_box_s.png -------------------------------------------------------------------------------- /grubcfg/themes/default/terminal_box_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/terminal_box_se.png -------------------------------------------------------------------------------- /grubcfg/themes/default/terminal_box_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/terminal_box_sw.png -------------------------------------------------------------------------------- /grubcfg/themes/default/terminal_box_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/terminal_box_w.png -------------------------------------------------------------------------------- /grubcfg/themes/default/terminus-12.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/terminus-12.pf2 -------------------------------------------------------------------------------- /grubcfg/themes/default/terminus-14.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/terminus-14.pf2 -------------------------------------------------------------------------------- /grubcfg/themes/default/terminus-16.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/terminus-16.pf2 -------------------------------------------------------------------------------- /grubcfg/themes/default/terminus-18.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/terminus-18.pf2 -------------------------------------------------------------------------------- /grubcfg/themes/default/theme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/grubcfg/themes/default/theme.txt -------------------------------------------------------------------------------- /images/Screenshot_2021-08-02-20_1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/images/Screenshot_2021-08-02-20_1920x1080.png -------------------------------------------------------------------------------- /images/Screenshot_2021-08-23-12_1280x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/images/Screenshot_2021-08-23-12_1280x800.png -------------------------------------------------------------------------------- /images/Screenshot_2021-08-23-34_1280x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/images/Screenshot_2021-08-23-34_1280x800.png -------------------------------------------------------------------------------- /images/Screenshot_2021-08-23-44_1280x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/images/Screenshot_2021-08-23-44_1280x800.png -------------------------------------------------------------------------------- /images/lxdm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/images/lxdm.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/install.sh -------------------------------------------------------------------------------- /lxdm/lxdm-theme/Default/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/lxdm/lxdm-theme/Default/bg.jpg -------------------------------------------------------------------------------- /lxdm/lxdm-theme/Default/greeter-gtk3.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/lxdm/lxdm-theme/Default/greeter-gtk3.ui -------------------------------------------------------------------------------- /lxdm/lxdm-theme/Default/greeter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/lxdm/lxdm-theme/Default/greeter.ui -------------------------------------------------------------------------------- /lxdm/lxdm-theme/Default/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/lxdm/lxdm-theme/Default/gtk.css -------------------------------------------------------------------------------- /lxdm/lxdm-theme/Default/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/lxdm/lxdm-theme/Default/gtkrc -------------------------------------------------------------------------------- /lxdm/lxdm-theme/Default/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/lxdm/lxdm-theme/Default/index.theme -------------------------------------------------------------------------------- /lxdm/lxdm-theme/Default/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/lxdm/lxdm-theme/Default/keyboard.svg -------------------------------------------------------------------------------- /lxdm/lxdm-theme/Default/lang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/lxdm/lxdm-theme/Default/lang.svg -------------------------------------------------------------------------------- /lxdm/lxdm-theme/Default/nobody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/lxdm/lxdm-theme/Default/nobody.png -------------------------------------------------------------------------------- /lxdm/lxdm-theme/Default/quit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/lxdm/lxdm-theme/Default/quit.svg -------------------------------------------------------------------------------- /lxdm/lxdm-theme/Default/session-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/lxdm/lxdm-theme/Default/session-alt.svg -------------------------------------------------------------------------------- /lxdm/lxdm-theme/Default/session.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/lxdm/lxdm-theme/Default/session.svg -------------------------------------------------------------------------------- /lxdm/lxdm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/lxdm/lxdm.conf -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/packages.txt -------------------------------------------------------------------------------- /recommended_aur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/recommended_aur.txt -------------------------------------------------------------------------------- /recommended_packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/recommended_packages.txt -------------------------------------------------------------------------------- /scripts/backlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/scripts/backlight -------------------------------------------------------------------------------- /scripts/backlight-down: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/scripts/backlight-down -------------------------------------------------------------------------------- /scripts/backlight-up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/scripts/backlight-up -------------------------------------------------------------------------------- /scripts/color_picker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/scripts/color_picker -------------------------------------------------------------------------------- /scripts/kunst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/scripts/kunst -------------------------------------------------------------------------------- /scripts/lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/scripts/lock -------------------------------------------------------------------------------- /scripts/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/scripts/update -------------------------------------------------------------------------------- /scripts/visualizer: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mpc play && ncmpcpp -s visualizer 4 | -------------------------------------------------------------------------------- /scripts/volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/scripts/volume -------------------------------------------------------------------------------- /scripts/volume-down: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/scripts/volume-down -------------------------------------------------------------------------------- /scripts/volume-up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/scripts/volume-up -------------------------------------------------------------------------------- /scripts/ytd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/scripts/ytd -------------------------------------------------------------------------------- /shells/bash/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/shells/bash/.bashrc -------------------------------------------------------------------------------- /shells/fish/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/shells/fish/config.fish -------------------------------------------------------------------------------- /shells/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/shells/zsh/.zshrc -------------------------------------------------------------------------------- /songs/Cartoon - Why We Lose (feat. Coleman Trapp) _NCS Release_.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/songs/Cartoon - Why We Lose (feat. Coleman Trapp) _NCS Release_.mp3 -------------------------------------------------------------------------------- /songs/Janji - Heroes Tonight (feat. Johnning) _NCS Release_.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/songs/Janji - Heroes Tonight (feat. Johnning) _NCS Release_.mp3 -------------------------------------------------------------------------------- /songs/Max Brhon - Cyberpunk [NCS Release].mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/songs/Max Brhon - Cyberpunk [NCS Release].mp3 -------------------------------------------------------------------------------- /songs/Warriyo - Mortals (feat. Laura Brehm).mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/songs/Warriyo - Mortals (feat. Laura Brehm).mp3 -------------------------------------------------------------------------------- /systemfiles/01_pw_feedback: -------------------------------------------------------------------------------- 1 | Defaults env_reset,pwfeedback,insults 2 | -------------------------------------------------------------------------------- /systemfiles/02-touchpad-ttc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/systemfiles/02-touchpad-ttc.conf -------------------------------------------------------------------------------- /systemfiles/mkinitcpio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/systemfiles/mkinitcpio.conf -------------------------------------------------------------------------------- /systemfiles/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/systemfiles/pacman.conf -------------------------------------------------------------------------------- /wallpapers/bg_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/bg_0.png -------------------------------------------------------------------------------- /wallpapers/bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/bg_1.jpg -------------------------------------------------------------------------------- /wallpapers/bg_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/bg_2.jpg -------------------------------------------------------------------------------- /wallpapers/bg_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/bg_3.jpg -------------------------------------------------------------------------------- /wallpapers/bg_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/bg_4.png -------------------------------------------------------------------------------- /wallpapers/bg_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/bg_5.jpg -------------------------------------------------------------------------------- /wallpapers/bg_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/bg_6.jpg -------------------------------------------------------------------------------- /wallpapers/bg_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/bg_7.jpg -------------------------------------------------------------------------------- /wallpapers/bg_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/bg_8.jpg -------------------------------------------------------------------------------- /wallpapers/bg_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/bg_9.jpg -------------------------------------------------------------------------------- /wallpapers/wal_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_1.jpg -------------------------------------------------------------------------------- /wallpapers/wal_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_10.jpg -------------------------------------------------------------------------------- /wallpapers/wal_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_11.jpg -------------------------------------------------------------------------------- /wallpapers/wal_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_12.jpg -------------------------------------------------------------------------------- /wallpapers/wal_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_13.jpg -------------------------------------------------------------------------------- /wallpapers/wal_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_14.jpg -------------------------------------------------------------------------------- /wallpapers/wal_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_2.jpg -------------------------------------------------------------------------------- /wallpapers/wal_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_3.jpg -------------------------------------------------------------------------------- /wallpapers/wal_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_4.jpg -------------------------------------------------------------------------------- /wallpapers/wal_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_5.jpg -------------------------------------------------------------------------------- /wallpapers/wal_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_6.jpg -------------------------------------------------------------------------------- /wallpapers/wal_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_7.jpg -------------------------------------------------------------------------------- /wallpapers/wal_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_8.jpg -------------------------------------------------------------------------------- /wallpapers/wal_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kungger-git/dotfiles-bspwm/HEAD/wallpapers/wal_9.jpg --------------------------------------------------------------------------------