├── .Xmodmap ├── .Xresources ├── .asoundrc ├── .bash_aliases ├── .bash_profile ├── .bashrc ├── .config ├── chromium-flags.conf ├── cmus │ └── tomorrow.theme ├── compton.conf ├── dunst │ └── dunstrc ├── gsimplecal │ └── config ├── gtk-3.0 │ ├── bookmarks │ ├── gtk.css │ └── settings.ini ├── htop │ └── htoprc ├── ranger │ ├── rc.conf │ └── rifle.conf ├── redshift │ └── redshift.conf ├── termite │ └── config └── timer │ ├── break.png │ └── timesup.png ├── .dircolors ├── .gitconfig ├── .gitignore ├── .gtkrc-2.0 ├── .gvimrc ├── .i3 ├── blocklets │ ├── aur │ ├── bandwidth │ ├── battery │ ├── close │ ├── cpu │ ├── date │ ├── disk │ ├── focused │ ├── gmail │ ├── i3menu │ ├── ipadr │ ├── keyindicator │ ├── keylayout │ ├── load │ ├── mediaplayer │ ├── mem │ ├── minmax │ ├── mpd │ ├── openvpn │ ├── pacman │ ├── ping │ ├── player_scroll │ ├── reddit │ ├── scratch │ ├── signal │ ├── ssid │ ├── temperature │ ├── timer │ ├── trash │ ├── uptime │ ├── volume │ └── wifi ├── config ├── lock-alt.png ├── lock-big.png └── lock.png ├── .i3blocks.conf ├── .pacman ├── aur.txt ├── pacman.conf └── repos.txt ├── .scrot ├── clean.png └── dirty.png ├── .shell_prompt.sh ├── .tmux.conf ├── .tmux_prompt.sh ├── .toprc ├── .vim └── colors │ ├── hybrid.vim │ ├── tomorrow-night-blue.vim │ ├── tomorrow-night-bright.vim │ ├── tomorrow-night-eighties.vim │ ├── tomorrow-night.vim │ └── tomorrow.vim ├── .vimrc ├── .xinitrc ├── README.md ├── archinstall.txt ├── bin ├── batnotify ├── brightness ├── colortheme ├── dscrot ├── fb ├── fuuu ├── getacpi ├── ilockit ├── lightsOn ├── media-info ├── netinfo ├── pacbup ├── pacupd ├── radio ├── rain? ├── rmshit ├── rofi-apps ├── rofi-calc ├── rofi-connm ├── rofi-exit ├── rofi-fb ├── rofi-find ├── rofi-getwindow ├── rofi-gksu ├── rofi-logout ├── rofi-passmenu ├── rofi-s ├── rofi-xrandr ├── scows ├── sense ├── takenote ├── timesup ├── tm-cli ├── todo ├── toggle-bar ├── toggle-comp ├── toggle-dpms ├── toggle-red ├── ufetch ├── upt ├── urlscript ├── wallch ├── wscrot └── yeah ├── postinstall.txt ├── resources ├── arch-lowpolly-blue.png ├── arch-lowpolly-color-logo.png ├── archlinux-blue-logo.png ├── archos-by-deadmetaler.png ├── blue-ridge-mountain.jpg ├── caja-actions │ ├── 1f9c5dbb-b807-4fd0-9d31-1cd4b3948c84.desktop │ ├── 385f1283-afcb-45e3-b0fb-63680d9fec1e.desktop │ ├── 624fd7c7-d9fa-4f80-8d63-8e70b011c8c4.desktop │ ├── 6af067d7-bd13-4e04-b1fb-482977eb3abd.desktop │ ├── 6f79db42-387e-4cd5-849f-1c0b9885ac43.desktop │ ├── 7a5507d3-dde7-40e1-bbc5-d68c7803bc82.desktop │ ├── 8e6eccb7-a965-4cb6-8ea8-780f2f5a2ac0.desktop │ ├── a5e9a496-4310-4e96-ab69-687f25d2a038.desktop │ ├── a9cd2d54-e308-4d18-ac1e-a0f197795694.desktop │ ├── aecabd97-2def-4650-b5d5-0ce5a4f28660.desktop │ ├── bdea9138-a4ab-4e31-92b4-ab5588342b08.desktop │ ├── c602a3ef-1777-4a1f-b572-3f55ddb94bb7.desktop │ ├── ce607a62-f656-4d62-a369-ff976d58609e.desktop │ └── ebb9a4f7-4b42-442a-b0b1-69af9f43fd3a.desktop ├── flattr-icon-mod.tar.gz ├── i3-by-leofa.png ├── pacman-by-leofa.png └── syslinux │ ├── gnu-boot.png │ └── syslinux.cfg └── setup ├── c720p-config ├── i3-environment ├── install-arch-base ├── restore-backup └── setup.sh /.Xmodmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.Xmodmap -------------------------------------------------------------------------------- /.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.Xresources -------------------------------------------------------------------------------- /.asoundrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.asoundrc -------------------------------------------------------------------------------- /.bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.bash_aliases -------------------------------------------------------------------------------- /.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.bash_profile -------------------------------------------------------------------------------- /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.bashrc -------------------------------------------------------------------------------- /.config/chromium-flags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/chromium-flags.conf -------------------------------------------------------------------------------- /.config/cmus/tomorrow.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/cmus/tomorrow.theme -------------------------------------------------------------------------------- /.config/compton.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/compton.conf -------------------------------------------------------------------------------- /.config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/dunst/dunstrc -------------------------------------------------------------------------------- /.config/gsimplecal/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/gsimplecal/config -------------------------------------------------------------------------------- /.config/gtk-3.0/bookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/gtk-3.0/bookmarks -------------------------------------------------------------------------------- /.config/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /.config/htop/htoprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/htop/htoprc -------------------------------------------------------------------------------- /.config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/ranger/rc.conf -------------------------------------------------------------------------------- /.config/ranger/rifle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/ranger/rifle.conf -------------------------------------------------------------------------------- /.config/redshift/redshift.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/redshift/redshift.conf -------------------------------------------------------------------------------- /.config/termite/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/termite/config -------------------------------------------------------------------------------- /.config/timer/break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/timer/break.png -------------------------------------------------------------------------------- /.config/timer/timesup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.config/timer/timesup.png -------------------------------------------------------------------------------- /.dircolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.dircolors -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.gitignore -------------------------------------------------------------------------------- /.gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.gtkrc-2.0 -------------------------------------------------------------------------------- /.gvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.gvimrc -------------------------------------------------------------------------------- /.i3/blocklets/aur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/aur -------------------------------------------------------------------------------- /.i3/blocklets/bandwidth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/bandwidth -------------------------------------------------------------------------------- /.i3/blocklets/battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/battery -------------------------------------------------------------------------------- /.i3/blocklets/close: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/close -------------------------------------------------------------------------------- /.i3/blocklets/cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/cpu -------------------------------------------------------------------------------- /.i3/blocklets/date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/date -------------------------------------------------------------------------------- /.i3/blocklets/disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/disk -------------------------------------------------------------------------------- /.i3/blocklets/focused: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/focused -------------------------------------------------------------------------------- /.i3/blocklets/gmail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/gmail -------------------------------------------------------------------------------- /.i3/blocklets/i3menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/i3menu -------------------------------------------------------------------------------- /.i3/blocklets/ipadr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/ipadr -------------------------------------------------------------------------------- /.i3/blocklets/keyindicator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/keyindicator -------------------------------------------------------------------------------- /.i3/blocklets/keylayout: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | Key=$(setxkbmap -query | grep "^layout" | awk '{print $2}') 4 | 5 | echo -e " $Key" 6 | -------------------------------------------------------------------------------- /.i3/blocklets/load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/load -------------------------------------------------------------------------------- /.i3/blocklets/mediaplayer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/mediaplayer -------------------------------------------------------------------------------- /.i3/blocklets/mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/mem -------------------------------------------------------------------------------- /.i3/blocklets/minmax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/minmax -------------------------------------------------------------------------------- /.i3/blocklets/mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/mpd -------------------------------------------------------------------------------- /.i3/blocklets/openvpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/openvpn -------------------------------------------------------------------------------- /.i3/blocklets/pacman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/pacman -------------------------------------------------------------------------------- /.i3/blocklets/ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/ping -------------------------------------------------------------------------------- /.i3/blocklets/player_scroll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/player_scroll -------------------------------------------------------------------------------- /.i3/blocklets/reddit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/reddit -------------------------------------------------------------------------------- /.i3/blocklets/scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/scratch -------------------------------------------------------------------------------- /.i3/blocklets/signal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/signal -------------------------------------------------------------------------------- /.i3/blocklets/ssid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/ssid -------------------------------------------------------------------------------- /.i3/blocklets/temperature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/temperature -------------------------------------------------------------------------------- /.i3/blocklets/timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/timer -------------------------------------------------------------------------------- /.i3/blocklets/trash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/trash -------------------------------------------------------------------------------- /.i3/blocklets/uptime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/uptime -------------------------------------------------------------------------------- /.i3/blocklets/volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/volume -------------------------------------------------------------------------------- /.i3/blocklets/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/blocklets/wifi -------------------------------------------------------------------------------- /.i3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/config -------------------------------------------------------------------------------- /.i3/lock-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/lock-alt.png -------------------------------------------------------------------------------- /.i3/lock-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/lock-big.png -------------------------------------------------------------------------------- /.i3/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3/lock.png -------------------------------------------------------------------------------- /.i3blocks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.i3blocks.conf -------------------------------------------------------------------------------- /.pacman/aur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.pacman/aur.txt -------------------------------------------------------------------------------- /.pacman/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.pacman/pacman.conf -------------------------------------------------------------------------------- /.pacman/repos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.pacman/repos.txt -------------------------------------------------------------------------------- /.scrot/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.scrot/clean.png -------------------------------------------------------------------------------- /.scrot/dirty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.scrot/dirty.png -------------------------------------------------------------------------------- /.shell_prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.shell_prompt.sh -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.tmux_prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.tmux_prompt.sh -------------------------------------------------------------------------------- /.toprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.toprc -------------------------------------------------------------------------------- /.vim/colors/hybrid.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.vim/colors/hybrid.vim -------------------------------------------------------------------------------- /.vim/colors/tomorrow-night-blue.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.vim/colors/tomorrow-night-blue.vim -------------------------------------------------------------------------------- /.vim/colors/tomorrow-night-bright.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.vim/colors/tomorrow-night-bright.vim -------------------------------------------------------------------------------- /.vim/colors/tomorrow-night-eighties.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.vim/colors/tomorrow-night-eighties.vim -------------------------------------------------------------------------------- /.vim/colors/tomorrow-night.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.vim/colors/tomorrow-night.vim -------------------------------------------------------------------------------- /.vim/colors/tomorrow.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.vim/colors/tomorrow.vim -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.vimrc -------------------------------------------------------------------------------- /.xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/.xinitrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/README.md -------------------------------------------------------------------------------- /archinstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/archinstall.txt -------------------------------------------------------------------------------- /bin/batnotify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/batnotify -------------------------------------------------------------------------------- /bin/brightness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/brightness -------------------------------------------------------------------------------- /bin/colortheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/colortheme -------------------------------------------------------------------------------- /bin/dscrot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/dscrot -------------------------------------------------------------------------------- /bin/fb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/fb -------------------------------------------------------------------------------- /bin/fuuu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/fuuu -------------------------------------------------------------------------------- /bin/getacpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/getacpi -------------------------------------------------------------------------------- /bin/ilockit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/ilockit -------------------------------------------------------------------------------- /bin/lightsOn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/lightsOn -------------------------------------------------------------------------------- /bin/media-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/media-info -------------------------------------------------------------------------------- /bin/netinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/netinfo -------------------------------------------------------------------------------- /bin/pacbup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/pacbup -------------------------------------------------------------------------------- /bin/pacupd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/pacupd -------------------------------------------------------------------------------- /bin/radio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/radio -------------------------------------------------------------------------------- /bin/rain?: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rain? -------------------------------------------------------------------------------- /bin/rmshit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rmshit -------------------------------------------------------------------------------- /bin/rofi-apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rofi-apps -------------------------------------------------------------------------------- /bin/rofi-calc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rofi-calc -------------------------------------------------------------------------------- /bin/rofi-connm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rofi-connm -------------------------------------------------------------------------------- /bin/rofi-exit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rofi-exit -------------------------------------------------------------------------------- /bin/rofi-fb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rofi-fb -------------------------------------------------------------------------------- /bin/rofi-find: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rofi-find -------------------------------------------------------------------------------- /bin/rofi-getwindow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rofi-getwindow -------------------------------------------------------------------------------- /bin/rofi-gksu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rofi-gksu -------------------------------------------------------------------------------- /bin/rofi-logout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rofi-logout -------------------------------------------------------------------------------- /bin/rofi-passmenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rofi-passmenu -------------------------------------------------------------------------------- /bin/rofi-s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rofi-s -------------------------------------------------------------------------------- /bin/rofi-xrandr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/rofi-xrandr -------------------------------------------------------------------------------- /bin/scows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/scows -------------------------------------------------------------------------------- /bin/sense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/sense -------------------------------------------------------------------------------- /bin/takenote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/takenote -------------------------------------------------------------------------------- /bin/timesup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/timesup -------------------------------------------------------------------------------- /bin/tm-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/tm-cli -------------------------------------------------------------------------------- /bin/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/todo -------------------------------------------------------------------------------- /bin/toggle-bar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/toggle-bar -------------------------------------------------------------------------------- /bin/toggle-comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/toggle-comp -------------------------------------------------------------------------------- /bin/toggle-dpms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/toggle-dpms -------------------------------------------------------------------------------- /bin/toggle-red: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/toggle-red -------------------------------------------------------------------------------- /bin/ufetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/ufetch -------------------------------------------------------------------------------- /bin/upt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/upt -------------------------------------------------------------------------------- /bin/urlscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/urlscript -------------------------------------------------------------------------------- /bin/wallch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/wallch -------------------------------------------------------------------------------- /bin/wscrot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/wscrot -------------------------------------------------------------------------------- /bin/yeah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/bin/yeah -------------------------------------------------------------------------------- /postinstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/postinstall.txt -------------------------------------------------------------------------------- /resources/arch-lowpolly-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/arch-lowpolly-blue.png -------------------------------------------------------------------------------- /resources/arch-lowpolly-color-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/arch-lowpolly-color-logo.png -------------------------------------------------------------------------------- /resources/archlinux-blue-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/archlinux-blue-logo.png -------------------------------------------------------------------------------- /resources/archos-by-deadmetaler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/archos-by-deadmetaler.png -------------------------------------------------------------------------------- /resources/blue-ridge-mountain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/blue-ridge-mountain.jpg -------------------------------------------------------------------------------- /resources/caja-actions/1f9c5dbb-b807-4fd0-9d31-1cd4b3948c84.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/1f9c5dbb-b807-4fd0-9d31-1cd4b3948c84.desktop -------------------------------------------------------------------------------- /resources/caja-actions/385f1283-afcb-45e3-b0fb-63680d9fec1e.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/385f1283-afcb-45e3-b0fb-63680d9fec1e.desktop -------------------------------------------------------------------------------- /resources/caja-actions/624fd7c7-d9fa-4f80-8d63-8e70b011c8c4.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/624fd7c7-d9fa-4f80-8d63-8e70b011c8c4.desktop -------------------------------------------------------------------------------- /resources/caja-actions/6af067d7-bd13-4e04-b1fb-482977eb3abd.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/6af067d7-bd13-4e04-b1fb-482977eb3abd.desktop -------------------------------------------------------------------------------- /resources/caja-actions/6f79db42-387e-4cd5-849f-1c0b9885ac43.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/6f79db42-387e-4cd5-849f-1c0b9885ac43.desktop -------------------------------------------------------------------------------- /resources/caja-actions/7a5507d3-dde7-40e1-bbc5-d68c7803bc82.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/7a5507d3-dde7-40e1-bbc5-d68c7803bc82.desktop -------------------------------------------------------------------------------- /resources/caja-actions/8e6eccb7-a965-4cb6-8ea8-780f2f5a2ac0.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/8e6eccb7-a965-4cb6-8ea8-780f2f5a2ac0.desktop -------------------------------------------------------------------------------- /resources/caja-actions/a5e9a496-4310-4e96-ab69-687f25d2a038.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/a5e9a496-4310-4e96-ab69-687f25d2a038.desktop -------------------------------------------------------------------------------- /resources/caja-actions/a9cd2d54-e308-4d18-ac1e-a0f197795694.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/a9cd2d54-e308-4d18-ac1e-a0f197795694.desktop -------------------------------------------------------------------------------- /resources/caja-actions/aecabd97-2def-4650-b5d5-0ce5a4f28660.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/aecabd97-2def-4650-b5d5-0ce5a4f28660.desktop -------------------------------------------------------------------------------- /resources/caja-actions/bdea9138-a4ab-4e31-92b4-ab5588342b08.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/bdea9138-a4ab-4e31-92b4-ab5588342b08.desktop -------------------------------------------------------------------------------- /resources/caja-actions/c602a3ef-1777-4a1f-b572-3f55ddb94bb7.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/c602a3ef-1777-4a1f-b572-3f55ddb94bb7.desktop -------------------------------------------------------------------------------- /resources/caja-actions/ce607a62-f656-4d62-a369-ff976d58609e.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/ce607a62-f656-4d62-a369-ff976d58609e.desktop -------------------------------------------------------------------------------- /resources/caja-actions/ebb9a4f7-4b42-442a-b0b1-69af9f43fd3a.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/caja-actions/ebb9a4f7-4b42-442a-b0b1-69af9f43fd3a.desktop -------------------------------------------------------------------------------- /resources/flattr-icon-mod.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/flattr-icon-mod.tar.gz -------------------------------------------------------------------------------- /resources/i3-by-leofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/i3-by-leofa.png -------------------------------------------------------------------------------- /resources/pacman-by-leofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/pacman-by-leofa.png -------------------------------------------------------------------------------- /resources/syslinux/gnu-boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/syslinux/gnu-boot.png -------------------------------------------------------------------------------- /resources/syslinux/syslinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/resources/syslinux/syslinux.cfg -------------------------------------------------------------------------------- /setup/c720p-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/setup/c720p-config -------------------------------------------------------------------------------- /setup/i3-environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/setup/i3-environment -------------------------------------------------------------------------------- /setup/install-arch-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/setup/install-arch-base -------------------------------------------------------------------------------- /setup/restore-backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/setup/restore-backup -------------------------------------------------------------------------------- /setup/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofa/dotfiles-old/HEAD/setup/setup.sh --------------------------------------------------------------------------------