updated
This commit is contained in:
parent
45167c4fdd
commit
4c0e2d095a
7 changed files with 31 additions and 60 deletions
|
@ -38,8 +38,8 @@ fi
|
|||
if [ -d "$HOME/Applications" ] ;
|
||||
then PATH="$HOME/Applications:$PATH"
|
||||
fi
|
||||
if [ -d "$HOME/.emacs.d/bin" ] ;
|
||||
then PATH="$HOME/.emacs.d/bin:$PATH"
|
||||
if [ -d "$HOME/.config/emacs/bin" ] ;
|
||||
then PATH="$HOME/.config/emacs/bin:$PATH"
|
||||
fi
|
||||
|
||||
### CHANGE TITLE OF TERMINALS ###
|
||||
|
@ -237,4 +237,4 @@ alias \
|
|||
blt="bluetoothctl"
|
||||
|
||||
### SETTING THE STARSHIP PROMPT ###
|
||||
eval "$(starship init bash)"
|
||||
export PS1="\[$(tput setaf 222)\]\u\[$(tput setaf 228)\]@\[$(tput setaf 196)\]\h \[$(tput setaf 121)\]\w \[$(tput sgr0)\]$ "
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#? Config file for btop v. 1.2.8
|
||||
#? Config file for btop v. 1.2.13
|
||||
|
||||
#* 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 = "/usr/share/btop/themes/tokyo-night.theme"
|
||||
color_theme = "/usr/share/btop/themes/gruvbox_dark_v2.theme"
|
||||
|
||||
#* If the theme set background should be shown, set to False if you want terminal background transparency.
|
||||
theme_background = False
|
||||
|
@ -16,7 +16,7 @@ force_tty = False
|
|||
|
||||
#* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets.
|
||||
#* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box.
|
||||
#* Use withespace " " as separator between different presets.
|
||||
#* Use whitespace " " as separator between different presets.
|
||||
#* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty"
|
||||
presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty"
|
||||
|
||||
|
@ -74,6 +74,9 @@ proc_per_core = False
|
|||
#* Show process memory as bytes instead of percent.
|
||||
proc_mem_bytes = True
|
||||
|
||||
#* Show cpu graph for each process.
|
||||
proc_cpu_graphs = True
|
||||
|
||||
#* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate)
|
||||
proc_info_smaps = False
|
||||
|
||||
|
@ -165,6 +168,9 @@ only_physical = True
|
|||
#* Read disks list from /etc/fstab. This also disables only_physical.
|
||||
use_fstab = True
|
||||
|
||||
#* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool)
|
||||
zfs_hide_datasets = False
|
||||
|
||||
#* Set to true to show available disk space for privileged users.
|
||||
disk_free_priv = False
|
||||
|
||||
|
@ -203,4 +209,4 @@ selected_battery = "Auto"
|
|||
|
||||
#* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
|
||||
#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
|
||||
log_level = "WARNING"
|
||||
log_level = "WARNING"
|
|
@ -398,7 +398,7 @@ If peep-dired is enabled, you will get image previews as you go up/down with 'j'
|
|||
Setting the theme to doom-one. To try out new themes, I set a keybinding for counsel-load-theme with 'SPC h t'.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(setq doom-theme 'doom-tokyo-night)
|
||||
(setq doom-theme 'doom-gruvbox)
|
||||
(map! :leader
|
||||
:desc "Load new theme" "h t" #'counsel-load-theme)
|
||||
#+END_SRC
|
||||
|
|
|
@ -4,49 +4,11 @@
|
|||
## / /_/ / / / /_/ / ,< / __/ Clay Gomera (Drake)
|
||||
## /_____/_/ \__,_/_/|_|\___/ My custom picom config
|
||||
|
||||
## Animations
|
||||
animations = true
|
||||
# `auto`, `none`, `fly-in`, `zoom`, `slide-down`, `slide-up`, `slide-left`, `slide-right` `slide-in`, `slide-out`
|
||||
animation-for-transient-window = "zoom"
|
||||
animation-for-open-window = "zoom"
|
||||
animation-for-unmap-window = "zoom"
|
||||
animation-for-menu-window = "zoom"
|
||||
animation-for-workspace-switch-out = "zoom"
|
||||
animation-for-workspace-switch-in = "zoom"
|
||||
animation-stiffness = 300;
|
||||
animation-dampening = 16;
|
||||
animation-window-mass = 1;
|
||||
animation-clamping = true;
|
||||
animation-delta = 16;
|
||||
#animation-force-steps = true;
|
||||
|
||||
|
||||
## Shadows
|
||||
shadow = false;
|
||||
#shadow-radius = 8;
|
||||
#shadow-opacity = .90
|
||||
#shadow-offset-x = -10;
|
||||
#shadow-offset-y = -10;
|
||||
# shadow-red = 0
|
||||
# shadow-green = 0
|
||||
# shadow-blue = 0
|
||||
# shadow-color = "#000000"
|
||||
#shadow-exclude = [
|
||||
# "name = 'Notification'",
|
||||
# "class_g = 'Conky'",
|
||||
# "class_g ?= 'Notify-osd'",
|
||||
# "class_g = 'Cairo-clock'",
|
||||
# "_GTK_FRAME_EXTENTS@:c"
|
||||
#];
|
||||
|
||||
## Fading
|
||||
fading = false;
|
||||
#fade-in-step = 0.05;
|
||||
#fade-out-step = 0.05;
|
||||
#fade-delta = 8
|
||||
#fade-exclude = []
|
||||
#no-fading-openclose = false
|
||||
#no-fading-destroyed-argb = false
|
||||
|
||||
## Transparency and opacity
|
||||
inactive-opacity = 1.00;
|
||||
|
@ -56,19 +18,8 @@ focus-exclude = [ "class_g = 'Cairo-clock'" ];
|
|||
# opaity-rule = []
|
||||
|
||||
## General Settings
|
||||
backend = "xrender";
|
||||
backend = "glx";
|
||||
vsync = true;
|
||||
dbe = false;
|
||||
detect-client-opacity = true;
|
||||
refresh-rate = 60;
|
||||
detect-transient = true;
|
||||
glx-no-stencil = true;
|
||||
use-damage = true;
|
||||
unredir-if-possible = false;
|
||||
#unredir-if-possible-exclude = [
|
||||
# "class_g = 'looking-glass-client' && !focused"
|
||||
#];
|
||||
glx-use-copysubbuffer-mesa = true;
|
||||
|
||||
wintypes:
|
||||
{
|
||||
|
|
14
user/.config/qutebrowser/bookmarks/urls
Normal file
14
user/.config/qutebrowser/bookmarks/urls
Normal file
|
@ -0,0 +1,14 @@
|
|||
https://mail.google.com/ gmail
|
||||
https://mail.tutanota.com/ tutanota
|
||||
https://next.tuxcloud.top/ nextcloud
|
||||
https://cloud.linode.com/ linode
|
||||
https://odysee.com/ odysee
|
||||
https://youtube.com/ youtube
|
||||
https://fosstodon.org/ mastodon
|
||||
https://gitlab.com/ gitlab
|
||||
https://app.element.io/ element
|
||||
https://web.whatsapp.com/ whatsapp
|
||||
https://outlook.office.com/ intec-correo
|
||||
https://lms.intec.edu.do/ intec-aula-virtual
|
||||
https://procesos.intec.edu.do/ intec-procesos
|
||||
https://dev.azure.com/INTEC-IDS323L-01-2022-04-Equipo-2/ intec-azure
|
|
@ -175,7 +175,7 @@ config.set('content.javascript.enabled', True, 'qute://*/*')
|
|||
# Directory to save downloads to. If unset, a sensible OS-specific
|
||||
# default is used.
|
||||
# Type: Directory
|
||||
c.downloads.location.directory = '~/Downloads'
|
||||
c.downloads.location.directory = '~/downloads'
|
||||
|
||||
# When to show the tab bar.
|
||||
# Type: String
|
||||
|
|
|
@ -43,4 +43,4 @@ export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:="$HOME/.config"}"
|
|||
export QT_QPA_PLATFORMTHEME=qt5ct # Qt theeming stuff
|
||||
|
||||
# start window manager / desktop environment
|
||||
exec awesome
|
||||
exec dwm
|
||||
|
|
Loading…
Reference in a new issue