about summary refs log tree commit diff
path: root/configs
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-12 13:27:37 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-12 13:27:37 -0800
commit931ebdbff2d489acba6898ffbc5b022e4706ba82 (patch)
tree2fa49741448d091029554bae535b7b0651465e88 /configs
parenthome-manager: re-organize configuration for myself (diff)
downloadworld-931ebdbff2d489acba6898ffbc5b022e4706ba82.tar.gz
configs: move personal configuration with user
Diffstat (limited to 'configs')
-rw-r--r--configs/mpd/mpd.conf24
-rw-r--r--configs/ncmpcpp/config19
-rw-r--r--configs/polybar/aptos.ini37
-rw-r--r--configs/polybar/carmel.ini36
-rw-r--r--configs/polybar/modules/battery.ini4
-rw-r--r--configs/polybar/modules/bluetooth.ini5
-rw-r--r--configs/polybar/modules/colors.ini7
-rw-r--r--configs/polybar/modules/date.ini6
-rw-r--r--configs/polybar/modules/i3.ini20
-rw-r--r--configs/polybar/modules/mpd.ini6
-rw-r--r--configs/polybar/modules/pulseaudio.ini8
-rw-r--r--configs/polybar/modules/wired.ini10
-rw-r--r--configs/polybar/modules/wireless.ini4
-rw-r--r--configs/zsh/init.zsh27
14 files changed, 0 insertions, 213 deletions
diff --git a/configs/mpd/mpd.conf b/configs/mpd/mpd.conf
deleted file mode 100644
index c7e9b3b..0000000
--- a/configs/mpd/mpd.conf
+++ /dev/null
@@ -1,24 +0,0 @@
-playlist_directory  "~/.config/mpd/playlists"
-db_file	            "~/.config/mpd/database"
-sticker_file        "~/.config/mpd/sticker.sql"
-music_directory     "~/media/music"
-
-auto_update "yes"
-
-filesystem_charset "UTF-8"
-
-input {
-  plugin "curl"
-}
-
-audio_output {
-  type "pipewire"
-  name "PipeWire Sound Server"
-}
-
-audio_output {
-  type   "fifo"
-  name   "visualizer"
-  path   "/tmp/mpd.fifo"
-  format "44100:16:2"
-}
diff --git a/configs/ncmpcpp/config b/configs/ncmpcpp/config
deleted file mode 100644
index 45814c4..0000000
--- a/configs/ncmpcpp/config
+++ /dev/null
@@ -1,19 +0,0 @@
-mpd_music_dir = /home/fcuny/media/music
-mpd_connection_timeout = 5
-
-media_library_primary_tag = "album_artist"
-
-allow_for_physical_item_deletion = no
-ask_before_clearing_playlists = yes
-default_place_to_search_in = database
-user_interface = classic
-search_engine_display_mode = classic
-
-browser_display_mode = columns
-browser_sort_mode = name
-cyclic_scrolling = no
-display_volume_level = no
-header_text_scrolling = no
-header_visibility = no
-statusbar_visibility = no
-titles_visibility = no
diff --git a/configs/polybar/aptos.ini b/configs/polybar/aptos.ini
deleted file mode 100644
index 04c35fe..0000000
--- a/configs/polybar/aptos.ini
+++ /dev/null
@@ -1,37 +0,0 @@
-include-file = ~/.config/polybar/modules/battery.ini
-include-file = ~/.config/polybar/modules/bluetooth.ini
-include-file = ~/.config/polybar/modules/colors.ini
-include-file = ~/.config/polybar/modules/date.ini
-include-file = ~/.config/polybar/modules/i3.ini
-include-file = ~/.config/polybar/modules/mpd.ini
-include-file = ~/.config/polybar/modules/pulseaudio.ini
-include-file = ~/.config/polybar/modules/wireless.ini
-
-[settings]
-screenchange-reload = false
-
-[bar/common]
-enable-ipc = true
-width = 100%
-monitor = ${env:MONITOR:}
-monitor-strict = true
-dpi = ${env:DPI:}
-border-size = 0
-tray-position = none
-fixed-center = true
-module-margin = 1
-padding-right = 1
-line-size = 3
-
-background = ${colors.background}
-foreground = ${colors.foreground}
-
-font-0 = Source Code Pro:style=Regular:size=10;2
-
-modules-left = i3
-
-modules-center = mpd
-
-[bar/alone]
-inherit = bar/common
-modules-right = network bluetooth pulseaudio battery date
diff --git a/configs/polybar/carmel.ini b/configs/polybar/carmel.ini
deleted file mode 100644
index d09f796..0000000
--- a/configs/polybar/carmel.ini
+++ /dev/null
@@ -1,36 +0,0 @@
-include-file = ~/.config/polybar/modules/colors.ini
-include-file = ~/.config/polybar/modules/date.ini
-include-file = ~/.config/polybar/modules/i3.ini
-include-file = ~/.config/polybar/modules/mpd.ini
-include-file = ~/.config/polybar/modules/pulseaudio.ini
-include-file = ~/.config/polybar/modules/wired.ini
-
-[settings]
-screenchange-reload = false
-
-[bar/common]
-enable-ipc = true
-width = 100%
-monitor = ${env:MONITOR:}
-monitor-strict = true
-dpi = ${env:DPI:}
-border-size = 0
-tray-position = none
-fixed-center = true
-module-margin = 1
-padding-right = 1
-
-background = ${colors.background}
-foreground = ${colors.foreground}
-
-font-0 = Source Code Pro:style=Regular:size=8;2
-font-1 = Font Awesome 5 Free:style=Solid:pixelsize=8;3
-font-2 = Material\-Design\-Iconic\-Font:size=8;2
-
-modules-left = i3
-
-modules-center = mpd
-
-[bar/alone]
-inherit = bar/common
-modules-right = wired-network pulseaudio date
diff --git a/configs/polybar/modules/battery.ini b/configs/polybar/modules/battery.ini
deleted file mode 100644
index 8c7e84a..0000000
--- a/configs/polybar/modules/battery.ini
+++ /dev/null
@@ -1,4 +0,0 @@
-[module/battery]
-type = custom/script
-exec = /home/fcuny/workspace/go/bin/polybar-bat
-interval = 10
diff --git a/configs/polybar/modules/bluetooth.ini b/configs/polybar/modules/bluetooth.ini
deleted file mode 100644
index 9a82955..0000000
--- a/configs/polybar/modules/bluetooth.ini
+++ /dev/null
@@ -1,5 +0,0 @@
-[module/bluetooth]
-type = custom/script
-exec = ~/.config/rofi/scripts/bluetooth --status
-interval = 1
-click-left = ~/.config/rofi/scripts/bluetooth &
diff --git a/configs/polybar/modules/colors.ini b/configs/polybar/modules/colors.ini
deleted file mode 100644
index 2b15171..0000000
--- a/configs/polybar/modules/colors.ini
+++ /dev/null
@@ -1,7 +0,0 @@
-[colors]
-background = #000000
-foreground = #FFFFF8
-highlight = #4c7899
-warning = #ff3121
-focused = #4c7899
-disabled = #90a1ad
diff --git a/configs/polybar/modules/date.ini b/configs/polybar/modules/date.ini
deleted file mode 100644
index c5b28da..0000000
--- a/configs/polybar/modules/date.ini
+++ /dev/null
@@ -1,6 +0,0 @@
-[module/date]
-type = internal/date
-interval = 2
-time = %H:%M
-date = %a %b %d
-label = %date% %time%
diff --git a/configs/polybar/modules/i3.ini b/configs/polybar/modules/i3.ini
deleted file mode 100644
index 7e24a4a..0000000
--- a/configs/polybar/modules/i3.ini
+++ /dev/null
@@ -1,20 +0,0 @@
-[module/i3]
-type = internal/i3
-format = <label-state> <label-mode>
-index-sort = true
-wrapping-scroll = false
-pin-workspaces = true
-
-label-mode-background = ${colors.highlight}
-label-mode-padding = 1
-label-focused = %name%
-label-focused-background = ${colors.focused}
-label-focused-padding = 1
-label-unfocused = %name%
-label-unfocused-padding = 1
-label-visible = %name%
-label-visible-background = ${colors.highlight}
-label-visible-padding = 1
-label-urgent = %name%
-label-urgent-background = #a00000
-label-urgent-padding = 1
diff --git a/configs/polybar/modules/mpd.ini b/configs/polybar/modules/mpd.ini
deleted file mode 100644
index 05f066d..0000000
--- a/configs/polybar/modules/mpd.ini
+++ /dev/null
@@ -1,6 +0,0 @@
-[module/mpd]
-type = internal/mpd
-socket = /var/run/user/1000/mpd/socket
-interval = 2
-label-song = %artist% / %title%
-format-online = <label-song>
diff --git a/configs/polybar/modules/pulseaudio.ini b/configs/polybar/modules/pulseaudio.ini
deleted file mode 100644
index 41d02b6..0000000
--- a/configs/polybar/modules/pulseaudio.ini
+++ /dev/null
@@ -1,8 +0,0 @@
-[module/pulseaudio]
-type = internal/pulseaudio
-use-ui-max = false
-format-volume = <label-volume>
-label-volume = "vol/%percentage%%"
-label-muted = "vol/%percentage%%"
-label-muted-foreground = ${colors.disabled}
-click-right = pavucontrol
diff --git a/configs/polybar/modules/wired.ini b/configs/polybar/modules/wired.ini
deleted file mode 100644
index f9f1db0..0000000
--- a/configs/polybar/modules/wired.ini
+++ /dev/null
@@ -1,10 +0,0 @@
-[module/wired-network]
-type = internal/network
-interface = enp9s0
-
-format-connected =<label-connected>
-label-connected = "%local_ip%"
-format-disconnected = <label-disconnected>
-label-disconnected = "%ifname%"
-format-disconnected-foreground = #121212
-format-disconnected-background = #ff6961
diff --git a/configs/polybar/modules/wireless.ini b/configs/polybar/modules/wireless.ini
deleted file mode 100644
index 95b0f09..0000000
--- a/configs/polybar/modules/wireless.ini
+++ /dev/null
@@ -1,4 +0,0 @@
-[module/network]
-type = custom/script
-exec = /home/fcuny/workspace/go/bin/polybar-wifi
-interval = 10
diff --git a/configs/zsh/init.zsh b/configs/zsh/init.zsh
deleted file mode 100644
index 1dba48e..0000000
--- a/configs/zsh/init.zsh
+++ /dev/null
@@ -1,27 +0,0 @@
-# Print timing statistics for everything which takes longer than 5 seconds of
-# user + system time ('sleep 6' does not work because of 0% user/system time!).
-REPORTTIME=5
-
-autoload -U colors && colors
-
-autoload -Uz vcs_info add-zsh-hook
-setopt prompt_subst
-
-add-zsh-hook precmd vcs_info
-# Enable checking for (un)staged changes, enabling use of %u and %c
-zstyle ':vcs_info:*' check-for-changes true
-# Set custom strings for an unstaged vcs repo changes (*) and staged changes (+)
-zstyle ':vcs_info:*' unstagedstr "%F{yellow}●%f"
-zstyle ':vcs_info:*' stagedstr   "%F{green}●%f"
-# Set the format of the Git information for vcs_info
-zstyle ':vcs_info:git:*' formats       " (%b%c%u)"
-zstyle ':vcs_info:git:*' actionformats " (%b|%a%u%c)"
-
-PROMPT='%K{cyan}%F{black}%m%k%f %~%F{red}${vcs_info_msg_0_}%f %# '
-
-# For tramp (emacs).
-if [ "$TERM" = "dumb" ]; then
-  unset PROMPT
-  PS1='$ '
-  unsetopt zle
-fi