Skip to content

Commit

Permalink
lowercase directories' name
Browse files Browse the repository at this point in the history
grep "\/[A-Z]" -n -r ./ --exclude-dir=.git
  • Loading branch information
adam8157 committed Dec 26, 2012
1 parent 28736e2 commit ffd457d
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ pathmunge () {
esac
}

pathmunge $HOME/Binary after
pathmunge $HOME/Scripts after
pathmunge $HOME/binary after
pathmunge $HOME/scripts after

export PATH

Expand Down
4 changes: 2 additions & 2 deletions .config/awesome/rc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ globalkeys = awful.util.table.join(
awful.key({ modkey }, "Down", function () awful.util.spawn("amixer -q sset Master 10%- unmute") end),
awful.key({ modkey }, "Print",
function ()
awful.util.spawn("scrot -e 'mv $f ~/Pictures/Shot/'")
awful.util.spawn("scrot -e 'mv $f ~/pictures/shot/'")
os.execute("sleep 0.5")
naughty.notify({ title="Screenshot", text="The full screen captured" })
end),
Expand All @@ -304,7 +304,7 @@ globalkeys = awful.util.table.join(
end),
awful.key({ "Mod1" }, "Print",
function ()
awful.util.spawn("scrot -u -e 'mv $f ~/Pictures/Shot/'")
awful.util.spawn("scrot -u -e 'mv $f ~/pictures/shot/'")
os.execute("sleep 0.5")
naughty.notify({ title="Screenshot", text="The focused window captured" })
end),
Expand Down
2 changes: 0 additions & 2 deletions .inputrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
set bell-style none

set completion-ignore-case on

set completion-prefix-display-length 2
2 changes: 1 addition & 1 deletion .irssi/config
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ settings = {
autolog_path = "~/.irssi/irclogs/$tag/$0.log";
};
"fe-text" = { actlist_sort = "refnum"; };
"irc/dcc" = { dcc_download_path = "~/Downloads"; };
"irc/dcc" = { dcc_download_path = "~/downloads"; };
"perl/core/scripts" = { nicklist_automode = "screen"; };
};

Expand Down
2 changes: 1 addition & 1 deletion .moc/config
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ReadTags = yes

# Directory in which you store music files.
MusicDir = "/home/adam/Music"
MusicDir = "/home/adam/music"

# Turn on repeat.
Repeat = no
Expand Down
2 changes: 1 addition & 1 deletion .mpdconf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# be disabled and audio files will only be accepted over ipc socket (using
# file:// protocol) or streaming files over an accepted protocol.
#
music_directory "~/Music"
music_directory "~/music"
#
# This setting sets the MPD internal playlist directory. The purpose of this
# directory is storage for playlists created by MPD. The server will use
Expand Down
4 changes: 2 additions & 2 deletions .muttrc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ set editor="vim"
set mbox_type=Maildir

# Set folder
set folder="~/Documents/Mails/Gmail"
set folder="~/documents/mails/gmail"
set spoolfile="+INBOX"
set postponed="+Drafts"

Expand Down Expand Up @@ -182,7 +182,7 @@ bind pager gg top
bind pager j next-line
bind pager k previous-line

macro attach s "<save-entry><kill-line>~/Downloads/<enter>a" "Save attachment"
macro attach s "<save-entry><kill-line>~/downloads/<enter>a" "Save attachment"
macro index \cr "<tag-pattern>.\n<tag-prefix><clear-flag>N<untag-pattern>.\n" "Mark all messages as read"
macro index gi "<change-folder>=INBOX<enter>" "Go to inbox"
macro index gs "<change-folder>=Spam<enter>" "Go to spam"
Expand Down
2 changes: 1 addition & 1 deletion .offlineimaprc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ remoterepository = Gmail-Remote

[Repository Gmail-Local]
type = Maildir
localfolders = ~/Documents/Mails/Gmail
localfolders = ~/documents/mails/gmail

[Repository Gmail-Remote]
type = Gmail
Expand Down

0 comments on commit ffd457d

Please sign in to comment.