Bunch of Configuration Changes & Fixes

- Update MangoHud config output a bit
- Remove some spaces for comments in autorandr postswitch script
- Comment out some hardware status options in neofetch config
- Add peek to background blur exclude list in picom config
- Set tooltip opacity to 1.0 in picom config
- Increase icon size in rofi centertab-dracula theme
- Add vkBasalt configuration output by GOverlay
- Add mixer option to pactl.sh to open pavucontrol
- Remove bauh from startup.sh
- Change blueman-tray to blueman-applet in startup.sh
- Add nyrna back to startup.sh
- Add java environment variable to .xinitrc to fix MATLAB issue
This commit is contained in:
Sravan Balaji
2021-07-23 16:53:52 -04:00
parent 092b7b7853
commit 86e86df0a9
12 changed files with 147 additions and 109 deletions

View File

@@ -1,3 +1,6 @@
toggle_fps_limit=F1
legacy_layout=false legacy_layout=false
gpu_stats gpu_stats
gpu_temp gpu_temp
@@ -13,6 +16,7 @@ cpu_temp
cpu_power cpu_power
cpu_mhz cpu_mhz
cpu_load_change cpu_load_change
core_load_change
cpu_load_value=50,90 cpu_load_value=50,90
cpu_load_color=FFFFFF,FF7800,CC0000 cpu_load_color=FFFFFF,FF7800,CC0000
cpu_color=2e97cb cpu_color=2e97cb

View File

@@ -11,21 +11,21 @@ print_info() {
info "Packages" packages info "Packages" packages
info "Shell" shell info "Shell" shell
# info "Resolution" resolution # info "Resolution" resolution
# info "DE" de info "DE" de
info "WM" wm info "WM" wm
# info "WM Theme" wm_theme info "WM Theme" wm_theme
# info "Theme" theme info "Theme" theme
# info "Icons" icons info "Icons" icons
# info "Terminal" term info "Terminal" term
# info "Terminal Font" term_font info "Terminal Font" term_font
info "CPU" cpu info "CPU" cpu
info "GPU" gpu info "GPU" gpu
# info "GPU Driver" gpu_driver # Linux/macOS only # info "GPU Driver" gpu_driver # Linux/macOS only
info "CPU Usage" cpu_usage # info "CPU Usage" cpu_usage
info "Memory" memory # info "Memory" memory
info "Disk" disk # info "Disk" disk
info "Battery" battery # info "Battery" battery
# info "Font" font info "Font" font
# info "Song" song # info "Song" song
# [[ "$player" ]] && prin "Music Player" "$player" # [[ "$player" ]] && prin "Music Player" "$player"
# info "Local IP" local_ip # info "Local IP" local_ip

View File

@@ -174,7 +174,6 @@ popup_menu = { opacity = 1.0; }
# dropdown_menu = { opacity = 0.8; } # dropdown_menu = { opacity = 0.8; }
dropdown_menu = { opacity = 1.0; } dropdown_menu = { opacity = 1.0; }
# Let inactive opacity set by -i override the '_NET_WM_OPACITY' values of windows. # Let inactive opacity set by -i override the '_NET_WM_OPACITY' values of windows.
# inactive-opacity-override = true # inactive-opacity-override = true
inactive-opacity-override = false; inactive-opacity-override = false;
@@ -273,6 +272,8 @@ blur-background-exclude = [
# prevents picom from blurring the background # prevents picom from blurring the background
# when taking selection screenshot with `main` # when taking selection screenshot with `main`
# https://github.com/naelstrof/maim/issues/130 # https://github.com/naelstrof/maim/issues/130
"class_g = 'peek'",
"class_g = 'Peek'",
"class_g = 'slop'", "class_g = 'slop'",
"class_g = 'zoom'", "class_g = 'zoom'",
"_GTK_FRAME_EXTENTS@:c" "_GTK_FRAME_EXTENTS@:c"
@@ -499,7 +500,7 @@ log-level = "info";
wintypes: wintypes:
{ {
normal = { fade = false; shadow = false; } normal = { fade = false; shadow = false; }
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; }; tooltip = { fade = true; shadow = true; opacity = 1.0; focus = true; full-shadow = false; };
dock = { shadow = false; } dock = { shadow = false; }
dnd = { shadow = false; } dnd = { shadow = false; }
# popup_menu = { opacity = 0.8; } # popup_menu = { opacity = 0.8; }

View File

@@ -85,6 +85,10 @@ element {
padding: 10px; padding: 10px;
} }
element-icon {
size: 2.00ch;
}
entry { entry {
expand: false; expand: false;
text-color: @normal-foreground; text-color: @normal-foreground;

View File

@@ -0,0 +1,3 @@
casSharpness=1.0
toggleKey = Home
effects = cas

View File

@@ -14,6 +14,7 @@ rofi_menu() {
" Raise Volume - raise" " Raise Volume - raise"
" Lower Volume - lower" " Lower Volume - lower"
" Mute - mute" " Mute - mute"
" Mixer - mixer"
" Quit - quit" " Quit - quit"
) )
@@ -43,6 +44,9 @@ main() {
--mute) --mute)
pactl set-sink-mute @DEFAULT_SINK@ toggle pactl set-sink-mute @DEFAULT_SINK@ toggle
;; ;;
--mixer)
pavucontrol
;;
--rofi) --rofi)
rofi_menu rofi_menu
;; ;;

View File

@@ -4,10 +4,10 @@ declare -a startup_array=(\
"bash /home/sravan/.scripts/deadd.sh --on" \ # Deadd Notification Center "bash /home/sravan/.scripts/deadd.sh --on" \ # Deadd Notification Center
"bash /home/sravan/.scripts/picom.sh --on" \ # Picom Compositor "bash /home/sravan/.scripts/picom.sh --on" \ # Picom Compositor
"/usr/bin/greenclip daemon" \ # Greenclip Clipboard Manager "/usr/bin/greenclip daemon" \ # Greenclip Clipboard Manager
"/usr/bin/redshift -x" \ # Reset redshift display gamma
"/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1" \ # GNOME Polkit Authentication Agent "/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1" \ # GNOME Polkit Authentication Agent
"/usr/bin/light-locker --lock-on-suspend --lock-on-lid" \ # Screen lock for lightdm "/usr/bin/light-locker --lock-on-suspend --lock-on-lid" \ # Screen lock for lightdm
"/usr/lib/kdeconnectd --replace" \ # KDE Connect Daemon "/usr/lib/kdeconnectd --replace" \ # KDE Connect Daemon
"/usr/bin/redshift -x" \ # Redshift Blue Light Filter
) )
declare -a kill_startup_array=(\ declare -a kill_startup_array=(\
@@ -15,22 +15,22 @@ declare -a kill_startup_array=(\
"killall deadd-notificat" \ # Deadd Notification Center "killall deadd-notificat" \ # Deadd Notification Center
"killall picom" \ # Picom Compositor "killall picom" \ # Picom Compositor
"killall greenclip" \ # Greenclip Clipboard Manager "killall greenclip" \ # Greenclip Clipboard Manager
"killall redshift" \ # Redshift Blue Light Filter
"killall polkit" \ # GNOME Polkit Authentication Agent "killall polkit" \ # GNOME Polkit Authentication Agent
"killall light-locker" \ # Screen lock for lightdm "killall light-locker" \ # Screen lock for lightdm
"killall kdeconnectd" \ # KDE Connect Daemon "killall kdeconnectd" \ # KDE Connect Daemon
"killall redshift" \ # Redshift Blue Light Filter
) )
declare -a delay_array=(\ declare -a delay_array=(\
# System Tray Applications # System Tray Applications
"/usr/bin/redshift-gtk" \ # Redshift Blue Light Filter "/usr/bin/redshift-gtk" \ # Redshift Blue Light Filter
"/usr/bin/bauh-tray" \ # Bauh Package Management GUI "/usr/bin/blueman-applet" \ # Blueman Bluetooth Manager
"/usr/bin/blueman-tray" \ # Blueman Bluetooth Manager
"/usr/bin/nm-applet" \ # Network Manager Applet "/usr/bin/nm-applet" \ # Network Manager Applet
"/usr/bin/kdeconnect-indicator" \ # KDE Connect Indicator "/usr/bin/kdeconnect-indicator" \ # KDE Connect Indicator
"/usr/bin/flameshot" \ # Flameshot Screenshot Tool "/usr/bin/flameshot" \ # Flameshot Screenshot Tool
"/usr/bin/xfce4-power-manager" \ # XFCE4 Power Manager "/usr/bin/xfce4-power-manager" \ # XFCE4 Power Manager
"/usr/bin/volctl" \ # PulseAudio Volume Control "/usr/bin/volctl" \ # PulseAudio Volume Control
"/usr/bin/nyrna" \ # Nyrna
# System Restore Processes # System Restore Processes
"/usr/bin/autorandr --change --force" \ # Auto restore screen layout "/usr/bin/autorandr --change --force" \ # Auto restore screen layout
"/usr/bin/numlockx on" \ # Enable numlock "/usr/bin/numlockx on" \ # Enable numlock
@@ -39,13 +39,13 @@ declare -a delay_array=(\
declare -a kill_delay_array=(\ declare -a kill_delay_array=(\
# System Tray Applications # System Tray Applications
"killall redshift" \ # Redshift Blue Light Filter "killall redshift" \ # Redshift Blue Light Filter
"killall bauh-tray" \ # Bauh Package Management GUI "killall blueman-applet" \ # Blueman Bluetooth Manager
"killall blueman-tray" \ # Blueman Bluetooth Manager
"killall nm-applet" \ # Network Manager Applet "killall nm-applet" \ # Network Manager Applet
"killall kdeconnect-indicator" \ # KDE Connect Indicator "killall kdeconnect-indicator" \ # KDE Connect Indicator
"killall flameshot" \ # Flameshot Screenshot Tool "killall flameshot" \ # Flameshot Screenshot Tool
"killall xfce4-power-manager" \ # XFCE4 Power Manager "killall xfce4-power-manager" \ # XFCE4 Power Manager
"killall volctl" \ # PulseAudio Volume Control "killall volctl" \ # PulseAudio Volume Control
"killall nyrna" \ # Nyrna
) )

View File

@@ -6,6 +6,7 @@ export GIT_EDITOR="emacs" # Default git editor
export BROWSER=vivaldi-stable # Web Browser export BROWSER=vivaldi-stable # Web Browser
export XDG_CONFIG_HOME=$HOME/.config # Set Config directory export XDG_CONFIG_HOME=$HOME/.config # Set Config directory
export QT_QPA_PLATFORMTHEME=qt5ct # QGtkStyle export QT_QPA_PLATFORMTHEME=qt5ct # QGtkStyle
export _JAVA_AWT_WM_NONREPARENTING=1 # Java fix for Window Managers
xrdb ~/.Xresources xrdb ~/.Xresources

View File

@@ -1485,6 +1485,10 @@ Each label is represented as a clickable button in the notification center. The
padding: 10px; padding: 10px;
} }
element-icon {
size: 2.00ch;
}
entry { entry {
expand: false; expand: false;
text-color: @normal-foreground; text-color: @normal-foreground;
@@ -2282,7 +2286,6 @@ See [[https://github.com/phillipberndt/autorandr#hook-scripts][autorandr hook sc
# dropdown_menu = { opacity = 0.8; } # dropdown_menu = { opacity = 0.8; }
dropdown_menu = { opacity = 1.0; } dropdown_menu = { opacity = 1.0; }
# Let inactive opacity set by -i override the '_NET_WM_OPACITY' values of windows. # Let inactive opacity set by -i override the '_NET_WM_OPACITY' values of windows.
# inactive-opacity-override = true # inactive-opacity-override = true
inactive-opacity-override = false; inactive-opacity-override = false;
@@ -2385,6 +2388,8 @@ See [[https://github.com/phillipberndt/autorandr#hook-scripts][autorandr hook sc
# prevents picom from blurring the background # prevents picom from blurring the background
# when taking selection screenshot with `main` # when taking selection screenshot with `main`
# https://github.com/naelstrof/maim/issues/130 # https://github.com/naelstrof/maim/issues/130
"class_g = 'peek'",
"class_g = 'Peek'",
"class_g = 'slop'", "class_g = 'slop'",
"class_g = 'zoom'", "class_g = 'zoom'",
"_GTK_FRAME_EXTENTS@:c" "_GTK_FRAME_EXTENTS@:c"
@@ -2615,7 +2620,7 @@ See [[https://github.com/phillipberndt/autorandr#hook-scripts][autorandr hook sc
wintypes: wintypes:
{ {
normal = { fade = false; shadow = false; } normal = { fade = false; shadow = false; }
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; }; tooltip = { fade = true; shadow = true; opacity = 1.0; focus = true; full-shadow = false; };
dock = { shadow = false; } dock = { shadow = false; }
dnd = { shadow = false; } dnd = { shadow = false; }
# popup_menu = { opacity = 0.8; } # popup_menu = { opacity = 0.8; }
@@ -2888,21 +2893,21 @@ See [[https://github.com/phillipberndt/autorandr#hook-scripts][autorandr hook sc
info "Packages" packages info "Packages" packages
info "Shell" shell info "Shell" shell
# info "Resolution" resolution # info "Resolution" resolution
# info "DE" de info "DE" de
info "WM" wm info "WM" wm
# info "WM Theme" wm_theme info "WM Theme" wm_theme
# info "Theme" theme info "Theme" theme
# info "Icons" icons info "Icons" icons
# info "Terminal" term info "Terminal" term
# info "Terminal Font" term_font info "Terminal Font" term_font
info "CPU" cpu info "CPU" cpu
info "GPU" gpu info "GPU" gpu
# info "GPU Driver" gpu_driver # Linux/macOS only # info "GPU Driver" gpu_driver # Linux/macOS only
info "CPU Usage" cpu_usage # info "CPU Usage" cpu_usage
info "Memory" memory # info "Memory" memory
info "Disk" disk # info "Disk" disk
info "Battery" battery # info "Battery" battery
# info "Font" font info "Font" font
# info "Song" song # info "Song" song
# [[ "$player" ]] && prin "Music Player" "$player" # [[ "$player" ]] && prin "Music Player" "$player"
# info "Local IP" local_ip # info "Local IP" local_ip
@@ -6834,6 +6839,9 @@ Configuration for Alacritty, the GPU enhanced terminal emulator.
** MangoHUD ** MangoHUD
#+begin_src conf :tangle .config/MangoHud/MangoHud.conf #+begin_src conf :tangle .config/MangoHud/MangoHud.conf
toggle_fps_limit=F1
legacy_layout=false legacy_layout=false
gpu_stats gpu_stats
gpu_temp gpu_temp
@@ -6849,6 +6857,7 @@ Configuration for Alacritty, the GPU enhanced terminal emulator.
cpu_power cpu_power
cpu_mhz cpu_mhz
cpu_load_change cpu_load_change
core_load_change
cpu_load_value=50,90 cpu_load_value=50,90
cpu_load_color=FFFFFF,FF7800,CC0000 cpu_load_color=FFFFFF,FF7800,CC0000
cpu_color=2e97cb cpu_color=2e97cb
@@ -6882,6 +6891,13 @@ Configuration for Alacritty, the GPU enhanced terminal emulator.
output_folder=/home/sravan output_folder=/home/sravan
media_player_name=spotify media_player_name=spotify
#+end_src #+end_src
** vkBasalt
#+begin_src conf :tangle .config/vkBasalt/vkBasalt.conf
casSharpness=1.0
toggleKey = Home
effects = cas
#+end_src
* SSH * SSH
@@ -6913,6 +6929,7 @@ Configuration for Alacritty, the GPU enhanced terminal emulator.
export BROWSER=vivaldi-stable # Web Browser export BROWSER=vivaldi-stable # Web Browser
export XDG_CONFIG_HOME=$HOME/.config # Set Config directory export XDG_CONFIG_HOME=$HOME/.config # Set Config directory
export QT_QPA_PLATFORMTHEME=qt5ct # QGtkStyle export QT_QPA_PLATFORMTHEME=qt5ct # QGtkStyle
export _JAVA_AWT_WM_NONREPARENTING=1 # Java fix for Window Managers
#+end_src #+end_src
*** Load Xresources *** Load Xresources
@@ -7178,6 +7195,7 @@ Configuration for Alacritty, the GPU enhanced terminal emulator.
" Raise Volume - raise" " Raise Volume - raise"
" Lower Volume - lower" " Lower Volume - lower"
" Mute - mute" " Mute - mute"
" Mixer - mixer"
" Quit - quit" " Quit - quit"
) )
@@ -7207,6 +7225,9 @@ Configuration for Alacritty, the GPU enhanced terminal emulator.
--mute) --mute)
pactl set-sink-mute @DEFAULT_SINK@ toggle pactl set-sink-mute @DEFAULT_SINK@ toggle
;; ;;
--mixer)
pavucontrol
;;
--rofi) --rofi)
rofi_menu rofi_menu
;; ;;
@@ -7433,10 +7454,10 @@ Configuration for Alacritty, the GPU enhanced terminal emulator.
"bash /home/sravan/.scripts/deadd.sh --on" \ # Deadd Notification Center "bash /home/sravan/.scripts/deadd.sh --on" \ # Deadd Notification Center
"bash /home/sravan/.scripts/picom.sh --on" \ # Picom Compositor "bash /home/sravan/.scripts/picom.sh --on" \ # Picom Compositor
"/usr/bin/greenclip daemon" \ # Greenclip Clipboard Manager "/usr/bin/greenclip daemon" \ # Greenclip Clipboard Manager
"/usr/bin/redshift -x" \ # Reset redshift display gamma
"/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1" \ # GNOME Polkit Authentication Agent "/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1" \ # GNOME Polkit Authentication Agent
"/usr/bin/light-locker --lock-on-suspend --lock-on-lid" \ # Screen lock for lightdm "/usr/bin/light-locker --lock-on-suspend --lock-on-lid" \ # Screen lock for lightdm
"/usr/lib/kdeconnectd --replace" \ # KDE Connect Daemon "/usr/lib/kdeconnectd --replace" \ # KDE Connect Daemon
"/usr/bin/redshift -x" \ # Redshift Blue Light Filter
) )
declare -a kill_startup_array=(\ declare -a kill_startup_array=(\
@@ -7444,22 +7465,22 @@ Configuration for Alacritty, the GPU enhanced terminal emulator.
"killall deadd-notificat" \ # Deadd Notification Center "killall deadd-notificat" \ # Deadd Notification Center
"killall picom" \ # Picom Compositor "killall picom" \ # Picom Compositor
"killall greenclip" \ # Greenclip Clipboard Manager "killall greenclip" \ # Greenclip Clipboard Manager
"killall redshift" \ # Redshift Blue Light Filter
"killall polkit" \ # GNOME Polkit Authentication Agent "killall polkit" \ # GNOME Polkit Authentication Agent
"killall light-locker" \ # Screen lock for lightdm "killall light-locker" \ # Screen lock for lightdm
"killall kdeconnectd" \ # KDE Connect Daemon "killall kdeconnectd" \ # KDE Connect Daemon
"killall redshift" \ # Redshift Blue Light Filter
) )
declare -a delay_array=(\ declare -a delay_array=(\
# System Tray Applications # System Tray Applications
"/usr/bin/redshift-gtk" \ # Redshift Blue Light Filter "/usr/bin/redshift-gtk" \ # Redshift Blue Light Filter
"/usr/bin/bauh-tray" \ # Bauh Package Management GUI "/usr/bin/blueman-applet" \ # Blueman Bluetooth Manager
"/usr/bin/blueman-tray" \ # Blueman Bluetooth Manager
"/usr/bin/nm-applet" \ # Network Manager Applet "/usr/bin/nm-applet" \ # Network Manager Applet
"/usr/bin/kdeconnect-indicator" \ # KDE Connect Indicator "/usr/bin/kdeconnect-indicator" \ # KDE Connect Indicator
"/usr/bin/flameshot" \ # Flameshot Screenshot Tool "/usr/bin/flameshot" \ # Flameshot Screenshot Tool
"/usr/bin/xfce4-power-manager" \ # XFCE4 Power Manager "/usr/bin/xfce4-power-manager" \ # XFCE4 Power Manager
"/usr/bin/volctl" \ # PulseAudio Volume Control "/usr/bin/volctl" \ # PulseAudio Volume Control
"/usr/bin/nyrna" \ # Nyrna
# System Restore Processes # System Restore Processes
"/usr/bin/autorandr --change --force" \ # Auto restore screen layout "/usr/bin/autorandr --change --force" \ # Auto restore screen layout
"/usr/bin/numlockx on" \ # Enable numlock "/usr/bin/numlockx on" \ # Enable numlock
@@ -7468,13 +7489,13 @@ Configuration for Alacritty, the GPU enhanced terminal emulator.
declare -a kill_delay_array=(\ declare -a kill_delay_array=(\
# System Tray Applications # System Tray Applications
"killall redshift" \ # Redshift Blue Light Filter "killall redshift" \ # Redshift Blue Light Filter
"killall bauh-tray" \ # Bauh Package Management GUI "killall blueman-applet" \ # Blueman Bluetooth Manager
"killall blueman-tray" \ # Blueman Bluetooth Manager
"killall nm-applet" \ # Network Manager Applet "killall nm-applet" \ # Network Manager Applet
"killall kdeconnect-indicator" \ # KDE Connect Indicator "killall kdeconnect-indicator" \ # KDE Connect Indicator
"killall flameshot" \ # Flameshot Screenshot Tool "killall flameshot" \ # Flameshot Screenshot Tool
"killall xfce4-power-manager" \ # XFCE4 Power Manager "killall xfce4-power-manager" \ # XFCE4 Power Manager
"killall volctl" \ # PulseAudio Volume Control "killall volctl" \ # PulseAudio Volume Control
"killall nyrna" \ # Nyrna
) )