├── Preferences.sublime-settings ├── home ├── .Xresources ├── .abcde.conf ├── .config │ ├── alacritty │ │ └── alacritty.toml │ ├── fontconfig │ │ └── fonts.conf │ ├── gtk-3.0 │ │ └── settings.ini │ ├── gtk-4.0 │ │ └── settings.ini │ ├── i3status │ │ └── config │ ├── mako │ │ └── config │ ├── mpv │ │ └── mpv.conf │ ├── sway │ │ └── config │ ├── systemd │ │ └── user │ │ │ └── ipfs.service │ └── waybar │ │ ├── config │ │ └── style.css ├── .gitconfig ├── .gtkrc-2.0 ├── .zshrc └── bin │ ├── brave-wayland │ ├── code-wayland │ ├── death-clock.sh │ ├── gclone │ ├── gif.sh │ ├── mvln │ ├── my-i3status.sh │ ├── note │ ├── power.sh │ ├── ripcord-wayland │ ├── sway-run │ ├── virtualenvwrapper.sh │ ├── webcam.sh │ └── z.sh ├── lights.sh ├── lock-screen ├── org.freedesktop.Notifications.service ├── rc-local.service └── rules.d ├── 70-persistent-net.rules └── backlight.rules /Preferences.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/Preferences.sublime-settings -------------------------------------------------------------------------------- /home/.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.Xresources -------------------------------------------------------------------------------- /home/.abcde.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.abcde.conf -------------------------------------------------------------------------------- /home/.config/alacritty/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.config/alacritty/alacritty.toml -------------------------------------------------------------------------------- /home/.config/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.config/fontconfig/fonts.conf -------------------------------------------------------------------------------- /home/.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /home/.config/gtk-4.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.config/gtk-4.0/settings.ini -------------------------------------------------------------------------------- /home/.config/i3status/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.config/i3status/config -------------------------------------------------------------------------------- /home/.config/mako/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.config/mako/config -------------------------------------------------------------------------------- /home/.config/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.config/mpv/mpv.conf -------------------------------------------------------------------------------- /home/.config/sway/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.config/sway/config -------------------------------------------------------------------------------- /home/.config/systemd/user/ipfs.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.config/systemd/user/ipfs.service -------------------------------------------------------------------------------- /home/.config/waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.config/waybar/config -------------------------------------------------------------------------------- /home/.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.config/waybar/style.css -------------------------------------------------------------------------------- /home/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.gitconfig -------------------------------------------------------------------------------- /home/.gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.gtkrc-2.0 -------------------------------------------------------------------------------- /home/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/.zshrc -------------------------------------------------------------------------------- /home/bin/brave-wayland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/bin/brave-wayland -------------------------------------------------------------------------------- /home/bin/code-wayland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/bin/code-wayland -------------------------------------------------------------------------------- /home/bin/death-clock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/bin/death-clock.sh -------------------------------------------------------------------------------- /home/bin/gclone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/bin/gclone -------------------------------------------------------------------------------- /home/bin/gif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/bin/gif.sh -------------------------------------------------------------------------------- /home/bin/mvln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/bin/mvln -------------------------------------------------------------------------------- /home/bin/my-i3status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/bin/my-i3status.sh -------------------------------------------------------------------------------- /home/bin/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/bin/note -------------------------------------------------------------------------------- /home/bin/power.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/bin/power.sh -------------------------------------------------------------------------------- /home/bin/ripcord-wayland: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | QT_QPA_PLATFORM=wayland ripcord 4 | -------------------------------------------------------------------------------- /home/bin/sway-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/bin/sway-run -------------------------------------------------------------------------------- /home/bin/virtualenvwrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/bin/virtualenvwrapper.sh -------------------------------------------------------------------------------- /home/bin/webcam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/bin/webcam.sh -------------------------------------------------------------------------------- /home/bin/z.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/home/bin/z.sh -------------------------------------------------------------------------------- /lights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/lights.sh -------------------------------------------------------------------------------- /lock-screen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/lock-screen -------------------------------------------------------------------------------- /org.freedesktop.Notifications.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/org.freedesktop.Notifications.service -------------------------------------------------------------------------------- /rc-local.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/rc-local.service -------------------------------------------------------------------------------- /rules.d/70-persistent-net.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/rules.d/70-persistent-net.rules -------------------------------------------------------------------------------- /rules.d/backlight.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggreer/dotfiles/HEAD/rules.d/backlight.rules --------------------------------------------------------------------------------