update dotfiles
This commit is contained in:
parent
476bc0f74e
commit
756a6a0c19
2
.bashrc
2
.bashrc
|
@ -124,7 +124,7 @@ export PATH="$PATH:HOME/.local/bin:$HOME/bin:$HOME/.local/share/flatpak/exports/
|
|||
|
||||
# alias
|
||||
|
||||
alias update="sudo nala update ; sudo nala upgrade -y ; sudo nala autoremove -y ; flatpak upgrade -y ; flatpak uninstall --unused -y"
|
||||
alias update="anytype.update.sh && sudo nala update && sudo nala upgrade -y ; sudo nala autoremove -y ; flatpak upgrade -y ; flatpak uninstall --unused -y"
|
||||
alias ll='exa -lh --icons'
|
||||
alias install="sudo nala install --no-install-recommends"
|
||||
alias purge="sudo nala purge -y"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes.
|
||||
#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes"
|
||||
color_theme = "catppuccin_mocha.theme"
|
||||
color_theme = "/home/dado/.config/btop/themes/catppuccin_mocha.theme"
|
||||
|
||||
#* If the theme set background should be shown, set to False if you want terminal background transparency.
|
||||
theme_background = False
|
||||
|
@ -54,7 +54,7 @@ update_ms = 2000
|
|||
|
||||
#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
|
||||
#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly.
|
||||
proc_sorting = "cpu lazy"
|
||||
proc_sorting = "cpu direct"
|
||||
|
||||
#* Reverse sorting order, True or False.
|
||||
proc_reversed = False
|
||||
|
@ -66,13 +66,13 @@ proc_tree = False
|
|||
proc_colors = True
|
||||
|
||||
#* Use a darkening gradient in the process list.
|
||||
proc_gradient = True
|
||||
proc_gradient = False
|
||||
|
||||
#* If process cpu usage should be of the core it's running on or usage of the total available cpu power.
|
||||
proc_per_core = False
|
||||
|
||||
#* Show process memory as bytes instead of percent.
|
||||
proc_mem_bytes = True
|
||||
proc_mem_bytes = False
|
||||
|
||||
#* Show cpu graph for each process.
|
||||
proc_cpu_graphs = True
|
||||
|
@ -88,7 +88,7 @@ proc_filter_kernel = False
|
|||
|
||||
#* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available.
|
||||
#* Select from a list of detected attributes from the options menu.
|
||||
cpu_graph_upper = "total"
|
||||
cpu_graph_upper = "system"
|
||||
|
||||
#* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available.
|
||||
#* Select from a list of detected attributes from the options menu.
|
||||
|
@ -98,7 +98,7 @@ cpu_graph_lower = "total"
|
|||
cpu_invert_lower = True
|
||||
|
||||
#* Set to True to completely disable the lower CPU graph.
|
||||
cpu_single_graph = False
|
||||
cpu_single_graph = True
|
||||
|
||||
#* Show cpu box at bottom of screen instead of top.
|
||||
cpu_bottom = False
|
||||
|
@ -145,19 +145,19 @@ custom_cpu_name = ""
|
|||
disks_filter = ""
|
||||
|
||||
#* Show graphs instead of meters for memory values.
|
||||
mem_graphs = True
|
||||
mem_graphs = False
|
||||
|
||||
#* Show mem box below net box instead of above.
|
||||
mem_below_net = False
|
||||
mem_below_net = True
|
||||
|
||||
#* Count ZFS ARC in cached and available memory.
|
||||
zfs_arc_cached = True
|
||||
zfs_arc_cached = False
|
||||
|
||||
#* If swap memory should be shown in memory box.
|
||||
show_swap = True
|
||||
show_swap = False
|
||||
|
||||
#* Show swap as a disk, ignores show_swap value above, inserts itself after first disk.
|
||||
swap_disk = True
|
||||
swap_disk = False
|
||||
|
||||
#* If mem box should be split to also show disks info.
|
||||
show_disks = True
|
||||
|
|
|
@ -20,7 +20,7 @@ exec hash dbus-update-activation-environment 2>/dev/null && \
|
|||
|
||||
# Autostart
|
||||
exec 'syncthing &'
|
||||
exec 'flatpak run com.bitwarden.desktop'
|
||||
#exec 'flatpak run com.bitwarden.desktop'
|
||||
exec 'seahorse'
|
||||
exec 'gammastep -l 0:0 -o -b 0.9:0.9 &'
|
||||
# https://man.archlinux.org/man/extra/gammastep/gammastep.1.en
|
||||
|
|
Loading…
Reference in New Issue