This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use autodie; | |
use POSIX qw(strftime); | |
use XML::Simple; | |
use Data::Dumper; | |
# Distro ------------------------------------------------------------------- | |
open (my $issue, "<", "/etc/issue"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# These things are run when an Openbox X Session is started. | |
# You may place a similar script in $HOME/.config/openbox/autostart | |
# to run user-specific things. | |
# | |
# If you want to use GNOME config tools... | |
# | |
#if test -x /usr/lib/openbox/gnome-settings-daemon >/dev/null; then | |
# /usr/lib/openbox/gnome-settings-daemon & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Shadow | |
shadow = true; | |
no-dnd-shadow = true; | |
no-dock-shadow = true; | |
#clear-shadow = true; | |
shadow-radius = 7; | |
shadow-offset-x = -7; | |
shadow-offset-y = -7; | |
shadow-opacity = 0.4; | |
# shadow-red = 0.0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[options] | |
scroll_on_output = false | |
scroll_on_keystroke = true | |
audible_bell = false | |
mouse_autohide = false | |
allow_bold = true | |
dynamic_title = true | |
urgent_on_bell = true | |
clickable_url = true | |
font = Monospace 9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Neofetch config file | |
# https://github.com/dylanaraps/neofetch | |
# Speed up script by not using unicode | |
export LC_ALL=C | |
export LANG=C | |
# See this wiki page for more info: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# /etc/pacman.conf | |
# | |
# See the pacman.conf(5) manpage for option and repository directives | |
# | |
# GENERAL OPTIONS | |
# | |
[options] | |
# The following paths are commented out with their default values listed. |
OlderNewer