summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2023-11-02 22:16:31 +0100
committeryuzu-eva <stevenhu@web.de>2023-11-02 22:16:31 +0100
commit9e2fd9be321d50d3166d224f8dc0e2d748945699 (patch)
treea5b82e4636464b9d731fda6f5de4fff4b460d6ad
parentb8ad8f60d1e9b1f9e2f6889d63a1b5166cf8d085 (diff)
update
-rw-r--r--.Xresources10
-rwxr-xr-x.config/mpd/mpd.conf2
-rw-r--r--.config/neofetch/config.conf33
-rw-r--r--.config/shell/aliasrc10
-rw-r--r--.config/shell/profile1
-rw-r--r--.config/zsh/.zshrc2
6 files changed, 35 insertions, 23 deletions
diff --git a/.Xresources b/.Xresources
index 14fc10e..42c0bf2 100644
--- a/.Xresources
+++ b/.Xresources
@@ -1,7 +1,13 @@
-URxvt*font: xft:Hack Nerd Font Mono:size=11:antialias=True,xft:JoyPixels:pixelsize=10
+/* URxvt*font: xft:Hack Nerd Font Mono:size=11:antialias=True,xft:JoyPixels:pixelsize=10 */
+
+URxvt.font: xft:Iosevka:style=Regular:size=13:antialias=True,xft:JoyPixels:pixelsize=10
+URxvt.boldFont: xft:Iosevka Term:style=Bold:size=13:antialias=True
+URxvt.italicFont: xft:Iosevka Term:style=Italic:size=13:antialias=True
+URxvt.boldItalicFont: xft:Iosevka Term:style=Bold Italic:size=13:antialias=True
!! colors and stuff
-URxvt.letterSpace: 0
+/* URxvt.letterSpace: 0 */
+URxvt.letterSpace: 1
URxvt.scrollBar: False
URxvt.depth: 32
URxvt.background: [90]#000000
diff --git a/.config/mpd/mpd.conf b/.config/mpd/mpd.conf
index 0e7073d..ff72d84 100755
--- a/.config/mpd/mpd.conf
+++ b/.config/mpd/mpd.conf
@@ -1,5 +1,5 @@
bind_to_address "0.0.0.0"
-#bind_to_address "/run/mpd/socket"
+# bind_to_address "/run/mpd/socket"
music_directory "/media/hdd/music"
playlist_directory "~/.config/mpd/playlists"
diff --git a/.config/neofetch/config.conf b/.config/neofetch/config.conf
index 8b98a51..8c29d6e 100644
--- a/.config/neofetch/config.conf
+++ b/.config/neofetch/config.conf
@@ -3,20 +3,23 @@
print_info() {
info title
- prin "${cl9}┌─────────────────────────────────────────────────────┐"
- info "\n \n " distro
- info "\n \n " kernel
- info "\n \n " uptime
- info "\n \n 󰏗" packages
- info "\n \n " shell
- info "\n \n " resolution
- info "\n \n " term
- info "\n \n " cpu
- info "\n \n 󰊚" gpu
- info "\n \n " memory
- info "\n \n " disk
- prin "${cl9}└──────────────────────────────────── ${cl0} ${cl1} ${cl2} ${cl3} ${cl4} ${cl5} ${cl6} $(color 15) ${cl9}┘"
- prin "\n"
+ prin "$(color 12)╭──────────── $(color 10)Software$(color 12) ────────────────────"
+ info "$(color 12)│ $(color 14)OS" distro
+ info "$(color 12)│ $(color 14)Kernel" kernel
+ info "$(color 12)│ $(color 14)Packages" packages
+ info "$(color 12)│ $(color 14)Shell" shell
+ info "$(color 12)│ $(color 14)WM" wm
+ info "$(color 12)│ $(color 14)Terminal" term
+ prin "$(color 12)├──────────── $(color 10)Hardware$(color 12) ────────────────────"
+ info "$(color 12)│ $(color 14)CPU" cpu
+ info "$(color 12)│ $(color 14)GPU" gpu
+ info "$(color 12)│ $(color 14)Memory" memory
+ info "$(color 12)│ $(color 14)Disk" disk
+ prin "$(color 12)├───────────── $(color 10)Uptime$(color 12) ─────────────────────"
+ info "$(color 12)│" uptime
+ prin "$(color 12)╰──────────────────────────────────────────"
+
+ info cols
}
reset="\033[0m"
@@ -401,7 +404,7 @@ disk_show=('/' '/home' '/dev/sda1' '/dev/sdb1')
# none: 'Disk: 74G / 118G (66%)'
# 'Disk: 74G / 118G (66%)'
# 'Disk: 74G / 118G (66%)'
-disk_subtitle="none"
+disk_subtitle="dir"
# Disk percent.
# Show/Hide disk percent.
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc
index 0757b44..9338ed9 100644
--- a/.config/shell/aliasrc
+++ b/.config/shell/aliasrc
@@ -145,10 +145,12 @@ alias dpush='dfiles push origin'
# package management
alias aptsr='apt search'
-alias aptin='sudo apt install'
-alias aptrm='sudo apt remove --autoremove'
-alias aptupd='sudo apt update'
-alias aptupg='sudo apt upgrade'
+alias aptsh='apt show'
+alias aptin='sudo apt-get install'
+alias aptrm='sudo apt-get remove --autoremove'
+alias aptarm='sudo apt-get autoremove'
+alias aptupd='sudo apt-get update'
+alias aptupg='sudo apt-get upgrade'
alias aptup='aptupd && aptupg'
alias aptli='apt list --installed'
alias aptlu='apt list --upgradable'
diff --git a/.config/shell/profile b/.config/shell/profile
index 075c5dd..05fd3d7 100644
--- a/.config/shell/profile
+++ b/.config/shell/profile
@@ -19,6 +19,7 @@ export GTK_IM_MODULE='ibus'
export QT_IM_MODULE='ibus'
export XMODIFIERS='@im=ibus'
export XDG_SESSION_TYPE='x11'
+export XDG_CURRENT_DESKTOP='i3'
export VDPAU_DRIVER=radeonsi
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc
index efdc061..0ed250f 100644
--- a/.config/zsh/.zshrc
+++ b/.config/zsh/.zshrc
@@ -25,7 +25,7 @@ bindkey "^[[3~" delete-char
bindkey '^x^e' edit-command-line
-PROMPT='%B%{$fg[red]%}[%{$fg[magenta]%}%n%{$fg[green]%}@%{$fg[blue]%}%M%{$fg[white]%}${vcs_info_msg_0_}:%{$fg[yellow]%}%~]%{$reset_color%}%b '
+PROMPT='%B%{$fg[red]%}[%{$fg[magenta]%}%n%{$fg[green]%}@%{$fg[blue]%}%m%{$fg[white]%}${vcs_info_msg_0_}:%{$fg[yellow]%}%~]%{$reset_color%}%b '
setopt extendedGlob