Compare commits
19 Commits
207bb53bc0
...
b47d69c9df
Author | SHA1 | Date | |
---|---|---|---|
b47d69c9df | |||
d7b17edc61 | |||
8439a20056 | |||
8b686b3040 | |||
3cfb9e4830 | |||
2aaa27281b | |||
3459200947 | |||
3d6a361bcd | |||
22333637ea | |||
032fb99841 | |||
6210c93d35 | |||
9e18018917 | |||
bbb32fb0bd | |||
946e6e2f9f | |||
657e38fb34 | |||
cf7707dedf | |||
5042dd248c | |||
b8871f647c | |||
4a750e9740 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,3 +4,4 @@
|
||||
*.swo
|
||||
*.DS_STORE
|
||||
*desktop.ini
|
||||
nord.rasi
|
@ -1,39 +1,39 @@
|
||||
! special
|
||||
*.foreground: #c6c8d1
|
||||
*.background: #161821
|
||||
*.cursorColor: #c6c8d1
|
||||
*.foreground: #d8dee9
|
||||
*.background: #2e3440
|
||||
*.cursorColor: #d8dee9
|
||||
|
||||
! black
|
||||
*.color0: #161821
|
||||
*.color8: #6b7089
|
||||
*.color0: #2e3440
|
||||
*.color8: #88c0d0
|
||||
|
||||
! red
|
||||
*.color1: #e27878
|
||||
*.color1: #bf616a
|
||||
*.color9: #e98989
|
||||
|
||||
! green
|
||||
*.color2: #b4be82
|
||||
*.color2: #a3be8c
|
||||
*.color10: #c0ca8e
|
||||
|
||||
! yellow
|
||||
*.color3: #e2a478
|
||||
*.color3: #ebcb8b
|
||||
*.color11: #e9b189
|
||||
|
||||
! blue
|
||||
*.color4: #84a0c6
|
||||
*.color12: #91acd1
|
||||
*.color4: #81a1c1
|
||||
*.color12: #5e81ac
|
||||
|
||||
! magenta
|
||||
*.color5: #a093c7
|
||||
*.color5: #b48ead
|
||||
*.color13: #ada0d3
|
||||
|
||||
! cyan
|
||||
*.color6: #89b8c2
|
||||
*.color14: #95c4ce
|
||||
*.color6: #8fbcbb
|
||||
*.color14: #88c0d0
|
||||
|
||||
! white
|
||||
*.color7: #c6c8d1
|
||||
*.color15: #d2d4de
|
||||
*.color7: #d8dee9
|
||||
*.color15: #e5e9f0
|
||||
|
||||
URxvt.font: xft:Source Code Pro:size=10.5
|
||||
URxvt.depth: 32
|
||||
|
@ -8,7 +8,7 @@
|
||||
"files.autoSave": "afterDelay",
|
||||
"python.languageServer": "Pylance",
|
||||
"window.zoomLevel": 0,
|
||||
"workbench.colorTheme": "Iceberg",
|
||||
"workbench.colorTheme": "Nord",
|
||||
"sync.quietSync": true,
|
||||
"sync.autoUpload": true,
|
||||
"sync.autoDownload": true,
|
||||
|
@ -1,6 +1,6 @@
|
||||
[Settings]
|
||||
gtk-icon-theme-name=oomox-iceberg
|
||||
gtk-theme-name=oomox-iceberg
|
||||
gtk-theme-name=Nordic
|
||||
gtk-cursor-theme-name=xcursor-breeze
|
||||
gtk-font-name=Source Code Pro Semibold 10.5
|
||||
gtk-xft-antialias=1
|
||||
|
@ -1,5 +1,5 @@
|
||||
configuration {
|
||||
font: "Source Code Pro Semibold 10.5";
|
||||
}
|
||||
@theme "iceberg-dark"
|
||||
@theme "nord"
|
||||
|
||||
|
0
home/.config/rofi/themes/.gitkeep
Normal file
0
home/.config/rofi/themes/.gitkeep
Normal file
@ -1,205 +0,0 @@
|
||||
/*******************************************************************************
|
||||
* ROFI Color Theme
|
||||
* User: Sheepla
|
||||
* Copyleft: Sheepla
|
||||
*******************************************************************************/
|
||||
|
||||
* {
|
||||
highlight: bold italic;
|
||||
scrollbar: true;
|
||||
|
||||
/* Color palette from iceberg.vim and iceberg-dark
|
||||
* https://github.com/cocopon/iceberg.vim
|
||||
* https://github.com/gkeep/iceberg-dark
|
||||
*/
|
||||
palette-bg0: #161821;
|
||||
palette-bg1: #1e2132;
|
||||
palette-bg2: #444b71;
|
||||
palette-fg0: #c6c8d1;
|
||||
palette-fg1: #aeb4cc;
|
||||
palette-red: #e27878;
|
||||
palette-green: #b4be82;
|
||||
palette-yellow: #e2a478;
|
||||
palette-blue: #84a0c6;
|
||||
palette-purple: #a093c7;
|
||||
palette-cyan: #89b8c2;
|
||||
palette-grey: #c0bfc9;
|
||||
|
||||
/* Base colors */
|
||||
background: @palette-bg0;
|
||||
background-color: @background;
|
||||
foreground: @palette-fg1;
|
||||
|
||||
/* Normal colors */
|
||||
normal-background: @background;
|
||||
normal-foreground: @foreground;
|
||||
alternate-normal-background: @palette-bg1;
|
||||
alternate-normal-foreground: @foreground;
|
||||
selected-normal-background: @palette-bg2;
|
||||
selected-normal-foreground: @palette-fg0;
|
||||
|
||||
/* Active window colors */
|
||||
active-background: @normal-background;
|
||||
active-foreground: @palette-blue;
|
||||
alternate-active-background: @alternate-normal-background;
|
||||
alternate-active-foreground: @active-foreground;
|
||||
selected-active-background: @palette-blue;
|
||||
selected-active-foreground: @normal-background;
|
||||
|
||||
/* Urgent colors */
|
||||
urgent-background: @background;
|
||||
urgent-foreground: @palette-yellow;
|
||||
alternate-urgent-background: @alternate-normal-background;
|
||||
alternate-urgent-foreground: @urgent-foreground;
|
||||
selected-urgent-background: @urgent-foreground;
|
||||
selected-urgent-foreground: @normal-background;
|
||||
|
||||
/* Other colors */
|
||||
border-color: @palette-bg2;
|
||||
separatorcolor: @border-color;
|
||||
scrollbar-handle: @palette-bg2;
|
||||
|
||||
text-color: @alternate-normal-foreground;
|
||||
}
|
||||
|
||||
#window {
|
||||
background-color: @background-color;
|
||||
children: [mainbox];
|
||||
}
|
||||
|
||||
#mainbox {
|
||||
border: 0;
|
||||
orientation: vertical;
|
||||
children: [ entry, message, listview, mode-switcher ];
|
||||
}
|
||||
|
||||
#entry {
|
||||
expand: false;
|
||||
text-color: @normal-foreground;
|
||||
/* Padding between 2 lines */
|
||||
padding: 10px 0px 10px 10px;
|
||||
border: 0 0 2px;
|
||||
border-color: @palette-bg2;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#sidebar {
|
||||
expand: false;
|
||||
}
|
||||
|
||||
/* Message box */
|
||||
#textbox {
|
||||
horizontal-align: 0;
|
||||
background-color: @palette-bg2;
|
||||
padding: 10px 20px 10px 20px ;
|
||||
text-color: @palette-fg0;
|
||||
}
|
||||
|
||||
#listview {
|
||||
border: 0px 0px 0px ;
|
||||
border-color: @palette-bg2;
|
||||
padding: 0px 0px 5px 0px;
|
||||
scrollbar: @scrollbar;
|
||||
columns: 3;
|
||||
lines: 5;
|
||||
}
|
||||
|
||||
|
||||
#mode-switcher {
|
||||
border: 3px 0px 0px 0px;
|
||||
border-color: @palette-bg2;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
#button.selected {
|
||||
background-color: @selected-normal-background;
|
||||
text-color: @selected-normal-foreground;
|
||||
}
|
||||
|
||||
#element {
|
||||
border: 0;
|
||||
padding: 3px 10px 3px 10px ;
|
||||
}
|
||||
|
||||
#element.normal.normal {
|
||||
background-color: @normal-background;
|
||||
text-color: @normal-foreground;
|
||||
}
|
||||
|
||||
#element.normal.urgent {
|
||||
background-color: @urgent-background;
|
||||
text-color: @urgent-foreground;
|
||||
}
|
||||
|
||||
#element.normal.active {
|
||||
background-color: @active-background;
|
||||
text-color: @active-foreground;
|
||||
}
|
||||
|
||||
#element.selected.normal {
|
||||
background-color: @selected-normal-background;
|
||||
text-color: @selected-normal-foreground;
|
||||
}
|
||||
|
||||
#element.selected.urgent {
|
||||
background-color: @selected-urgent-background;
|
||||
text-color: @selected-urgent-foreground;
|
||||
}
|
||||
|
||||
#element.selected.active {
|
||||
background-color: @selected-active-background;
|
||||
text-color: @selected-active-foreground;
|
||||
}
|
||||
|
||||
#element.alternate.normal {
|
||||
background-color: @alternate-normal-background;
|
||||
text-color: @alternate-normal-foreground;
|
||||
}
|
||||
|
||||
#element.alternate.urgent {
|
||||
background-color: @alternate-urgent-background;
|
||||
text-color: @alternate-urgent-foreground;
|
||||
}
|
||||
|
||||
#element.alternate.active {
|
||||
background-color: @alternate-active-background;
|
||||
text-color: @alternate-active-foreground;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
spacing: 0;
|
||||
text-color: @normal-foreground;
|
||||
padding: 2px;
|
||||
children: [ textbox-prompt-sep, entry, case-indicator ];
|
||||
}
|
||||
|
||||
case-indicator,
|
||||
entry,
|
||||
button {
|
||||
spacing: 0;
|
||||
text-color: @normal-foreground;
|
||||
}
|
||||
|
||||
button.selected {
|
||||
background-color: @selected-normal-background;
|
||||
text-color: @selected-normal-foreground;
|
||||
}
|
||||
|
||||
textbox-prompt-sep {
|
||||
expand: false;
|
||||
str: ":";
|
||||
text-color: @normal-foreground;
|
||||
margin: 0 0.3em 0 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
padding:6px 9px;
|
||||
background-color: @palette-bg2;
|
||||
}
|
||||
|
||||
#element-icon {
|
||||
size: 18;
|
||||
}
|
@ -1,8 +1,8 @@
|
||||
[global_config]
|
||||
title_transmit_fg_color = "#161821"
|
||||
title_transmit_bg_color = "#89b8c2"
|
||||
title_inactive_fg_color = "#c6c8d1"
|
||||
title_inactive_bg_color = "#6b7089"
|
||||
title_transmit_bg_color = "#8fbcbb"
|
||||
title_inactive_fg_color = "#3b4252"
|
||||
title_inactive_bg_color = "#88c0d0"
|
||||
enabled_plugins = APTURLHandler, LaunchpadCodeURLHandler, LaunchpadBugURLHandler
|
||||
title_use_system_font = False
|
||||
title_font = Source Code Pro 10
|
||||
@ -10,11 +10,11 @@
|
||||
[profiles]
|
||||
[[default]]
|
||||
visible_bell = True
|
||||
background_color = "#161821"
|
||||
cursor_color = "#c6c8d1"
|
||||
foreground_color = "#c6c8d1"
|
||||
background_color = "#2e3440"
|
||||
cursor_color = "#d8dee9"
|
||||
foreground_color = "#d8dee9"
|
||||
scrollback_infinite = True
|
||||
palette = "#161821:#e27878:#b4be82:#e2a478:#84a0c6:#a093c7:#89b8c2:#c6c8d1:#6b7089:#e98989:#c0ca8e:#e9b189:#91acd1:#ada0d3:#95c4ce:#d2d4de"
|
||||
palette ="#2e3440:#d8dee9:#ebcb8b:#a3be8c:#d8dee9:#e5e9f0:#eceff4:#8fbcbb:#88c0d0:#81a1c1:#5e81ac:#bf616a:#d08770:#ebcb8b:#a3be8c:#b48ead"
|
||||
[layouts]
|
||||
[[default]]
|
||||
[[[child1]]]
|
||||
|
@ -1,26 +0,0 @@
|
||||
[Alsa]
|
||||
card=HDA ATI SB
|
||||
channel=Master
|
||||
|
||||
[Notification]
|
||||
show_notification=true
|
||||
notification_type=1
|
||||
|
||||
[StatusIcon]
|
||||
stepsize=5
|
||||
onclick=urxvt -e 'alsamixer'
|
||||
theme=White Gnome
|
||||
use_panel_specific_icons=true
|
||||
lmb_slider=true
|
||||
mmb_mute=true
|
||||
use_horizontal_slider=false
|
||||
show_sound_level=true
|
||||
use_transparent_background=true
|
||||
|
||||
[Hotkeys]
|
||||
up_enabled=true
|
||||
down_enabled=true
|
||||
mute_enabled=true
|
||||
up=XF86AudioRaiseVolume
|
||||
down=XF86AudioLowerVolume
|
||||
mute=XF86AudioMute
|
@ -1,22 +0,0 @@
|
||||
# Configuration for D-Menu (I use rofi mostly, this is usually forgotten about)
|
||||
|
||||
## define the font for dmenu to be used
|
||||
DMENU_FN="Source Code Pro Semibold 10.5"
|
||||
|
||||
## background colour for unselected menu-items
|
||||
DMENU_NB="#6b7089"
|
||||
|
||||
## textcolour for unselected menu-items
|
||||
DMENU_NF="#c6c8d1"
|
||||
|
||||
## background colour for selected menu-items
|
||||
DMENU_SB="#89b8c2"
|
||||
|
||||
## textcolour for selected menu-items
|
||||
DMENU_SF="#161821"
|
||||
|
||||
## command for the terminal application to be used:
|
||||
TERMINAL_CMD="terminal -e"
|
||||
|
||||
## export our variables
|
||||
DMENU_OPTIONS="-fn $DMENU_FN -nb $DMENU_NB -nf $DMENU_NF -sf $DMENU_SF -sb $DMENU_SB"
|
@ -10,7 +10,7 @@ export LANGUAGE=en_US.UTF-8
|
||||
export EDITOR=vim
|
||||
|
||||
# Paths
|
||||
export PATH=${HOME}/bin:$PATH:/usr/lib/wine/bin:/sbin:/usr/sbin:/usr/local/bin
|
||||
export PATH=${HOME}/bin:${HOME}/.local/bin:$PATH:/sbin:/usr/sbin:/usr/local/bin
|
||||
|
||||
# Give the path to the dotfiles
|
||||
export _DOTFILES="${HOME}/dotfiles"
|
||||
|
@ -1,139 +0,0 @@
|
||||
# vim:filetype=config:tw=80:et
|
||||
#
|
||||
# This is sample ~/.stalonetrayrc, resembling default configuration.
|
||||
# Remember: command line parameters take precedence.
|
||||
#
|
||||
# Directives introduced in 0.8 are marked with "NEW in 0.8"
|
||||
#
|
||||
####################################################################
|
||||
#
|
||||
# stalonetray understands following directives
|
||||
#
|
||||
####################################################################
|
||||
|
||||
# background <color> # color can be specified as an HTML hex triplet or
|
||||
# as a name from rgb.txt, note that '#' must be quoted
|
||||
background "#6b7089"
|
||||
|
||||
# decorations <decspec> # set trays window decorations; possible values for
|
||||
# decspec are: all, title, border, none
|
||||
decorations none
|
||||
|
||||
# display <display name> # as usual
|
||||
|
||||
# dockapp_mode <mode> # set dockapp mode, which can be either simple (for
|
||||
# e.g. OpenBox, wmaker for WindowMaker, or none
|
||||
# (default). NEW in 0.8.
|
||||
dockapp_mode none
|
||||
|
||||
# fuzzy_edges [<level>] # enable fuzzy edges and set fuzziness level. level
|
||||
# can be from 0 (disabled) to 3; this setting works
|
||||
# with tinting and/or transparent and/or pixmap
|
||||
# backgrounds
|
||||
fuzzy_edges 0
|
||||
|
||||
# geometry <geometry> # tray's geometry in standard X notation; width and
|
||||
# height are specified in slot_size multiples
|
||||
geometry 1x1+0+0
|
||||
|
||||
# grow_gravity <gravity> # one of N, S, E, W, NW, NE, SW, SE; tray will grow
|
||||
# in the direction opposite to one specified by
|
||||
# grow_gravity; if horizontal or vertical
|
||||
# direction is not specified, tray will not grow in
|
||||
# that direction
|
||||
grow_gravity NW
|
||||
|
||||
# icon_gravity <gravity> # icon placement gravity, one of NW, NE, SW, SE
|
||||
icon_gravity NW
|
||||
|
||||
# icon_size <int> # specifies dimensions of typical icon slot
|
||||
icon_size 24
|
||||
|
||||
# log_level <level> # controls the amount of logging output, level can
|
||||
# be err (default), info, or trace (enabled only
|
||||
# when stalonetray configured with --enable-debug)
|
||||
# NEW in 0.8.
|
||||
log_level err
|
||||
|
||||
# kludges kludge[,kludge] # enable specific kludges to work around
|
||||
# non-conforming WMs and/or stalonetray bugs.
|
||||
# NEW in 0.8. Argument is a
|
||||
# comma-separated list of
|
||||
# * fix_window_pos - fix tray window position on
|
||||
# erroneous moves by WM
|
||||
# * force_icons_size - ignore resize events on all
|
||||
# icons; force their size to be equal to
|
||||
# icon_size
|
||||
# * use_icon_hints - use icon window hints to
|
||||
# dtermine icon size
|
||||
|
||||
kludges force_icons_size
|
||||
|
||||
# max_geometry <geometry> # maximal tray dimensions; 0 in width/height means
|
||||
# no limit
|
||||
max_geometry 0x0
|
||||
|
||||
# no_shrink [<bool>] # disables shrink-back mode
|
||||
no_shrink false
|
||||
|
||||
# parent_bg [<bool>] # whether to use pseudo-transparency
|
||||
# (looks better when reparented into smth like FvwmButtons)
|
||||
parent_bg false
|
||||
|
||||
# pixmap_bg <path_to_xpm> # use pixmap from specified xpm file for (tiled) background
|
||||
# pixmap_bg /home/user/.stalonetraybg.xpm
|
||||
|
||||
# scrollbars <mode> # enable/disable scrollbars; mode is either
|
||||
# vertical, horizontal, all or none (default)
|
||||
# NEW in 0.8.
|
||||
scrollbars none
|
||||
|
||||
# scrollbars-size <size> # scrollbars step in pixels; default is slot_size / 4
|
||||
# scrollbars-step 8
|
||||
|
||||
# scrollbars-step <step> # scrollbars step in pixels; default is slot_size / 2
|
||||
# scrollbars-step 32
|
||||
|
||||
# slot_size <int> # specifies size of icon slot, defaults to
|
||||
# icon_size NEW in 0.8.
|
||||
|
||||
# skip_taskbar [<bool>] # hide tray`s window from the taskbar
|
||||
skip_taskbar true
|
||||
|
||||
# sticky [<bool>] # make a tray`s window sticky across the
|
||||
# desktops/pages
|
||||
sticky true
|
||||
|
||||
# tint_color <color> # set tinting color
|
||||
tint_color white
|
||||
|
||||
# tint_level <level> # set tinting level; level ranges from 0 (disabled)
|
||||
# to 255
|
||||
tint_level 0
|
||||
|
||||
# transparent [<bool>] # whether to use root-transparency (background
|
||||
# image must be set with Esetroot or compatible utility)
|
||||
transparent false
|
||||
|
||||
# vertical [<bool>] # whether to use vertical layout (horisontal layout
|
||||
# is used by default)
|
||||
vertical false
|
||||
|
||||
# window_layer <layer> # set the EWMH-compatible window layer; one of:
|
||||
# bottom, normal, top
|
||||
window_layer normal
|
||||
|
||||
# window_strut <mode> # enable/disable window struts for tray window (to
|
||||
# avoid converting of tray window by maximized
|
||||
# windows); mode defines to which screen border tray
|
||||
# will be attached; it can be either top, bottom,
|
||||
# left, right, none or auto (default)
|
||||
window_strut auto
|
||||
|
||||
# window_type <type> # set the EWMH-compatible window type; one of:
|
||||
# desktop, dock, normal, toolbar, utility
|
||||
window_type utility
|
||||
|
||||
# xsync [<bool>] # whether to operate on X server synchronously (SLOOOOW)
|
||||
xsync false
|
||||
|
115
home/.tmux.conf
115
home/.tmux.conf
@ -61,120 +61,17 @@ set -g history-limit 5000
|
||||
|
||||
# Syncronizes keys typed in one pane across all panes, press again to disable
|
||||
bind-key y setw synchronize-panes
|
||||
#
|
||||
#######################
|
||||
#### DESIGN CHANGES ###
|
||||
#######################
|
||||
#
|
||||
## panes
|
||||
#set -g pane-border-fg black
|
||||
#set -g pane-active-border-fg brightred
|
||||
#
|
||||
### Status bar design
|
||||
## status line
|
||||
#set -g status-utf8 on
|
||||
#set -g status-justify left
|
||||
#set -g status-bg default
|
||||
#set -g status-fg colour12
|
||||
#set -g status-interval 2
|
||||
#
|
||||
## messaging
|
||||
#set -g message-fg black
|
||||
#set -g message-bg yellow
|
||||
#set -g message-command-fg blue
|
||||
#set -g message-command-bg black
|
||||
#
|
||||
##window mode
|
||||
#setw -g mode-bg colour6
|
||||
#setw -g mode-fg colour0
|
||||
#
|
||||
## window status
|
||||
#setw -g window-status-format " #F#I:#W#F "
|
||||
#setw -g window-status-current-format " #F#I:#W#F "
|
||||
#setw -g window-status-format "#[fg=magenta]#[bg=black] #I #[bg=cyan]#[fg=colour8] #W "
|
||||
#setw -g window-status-current-format "#[bg=brightmagenta]#[fg=colour8] #I #[fg=colour8]#[bg=colour14] #W "
|
||||
#setw -g window-status-current-bg colour0
|
||||
#setw -g window-status-current-fg colour11
|
||||
#setw -g window-status-current-attr dim
|
||||
#setw -g window-status-bg green
|
||||
#setw -g window-status-fg black
|
||||
#setw -g window-status-attr reverse
|
||||
#
|
||||
## Info on left (I don't have a session display for now)
|
||||
#set -g status-left ''
|
||||
#
|
||||
## loud or quiet?
|
||||
#set-option -g visual-activity off
|
||||
#set-option -g visual-bell off
|
||||
#set-option -g visual-silence off
|
||||
#set-window-option -g monitor-activity off
|
||||
#set-option -g bell-action none
|
||||
#
|
||||
## Colors
|
||||
#set -g default-terminal "screen-256color"
|
||||
#
|
||||
## The modes {
|
||||
#setw -g clock-mode-colour colour135
|
||||
#setw -g mode-attr bold
|
||||
#setw -g mode-fg colour196
|
||||
#setw -g mode-bg colour238
|
||||
#
|
||||
## }
|
||||
## The panes {
|
||||
#
|
||||
#set -g pane-border-bg colour235
|
||||
#set -g pane-border-fg colour238
|
||||
#set -g pane-active-border-bg colour236
|
||||
#set -g pane-active-border-fg colour51
|
||||
#
|
||||
## }
|
||||
## The statusbar {
|
||||
#
|
||||
#set -g status-position bottom
|
||||
#set -g status-bg colour234
|
||||
#set -g status-fg colour137
|
||||
#set -g status-attr dim
|
||||
#set -g status-left '#{prefix_highlight}'
|
||||
#set -g status-right '#{net_speed} #[fg=yellow]#(hostname)#[default] #[fg=colour234,bg=colour241,bold] %m/%d #[fg=colour233,bg=colour245,bold] %H:%M:%S '
|
||||
#set -g status-right-length 70
|
||||
#set -g status-left-length 4
|
||||
#
|
||||
#setw -g window-status-current-fg colour81
|
||||
#setw -g window-status-current-bg colour238
|
||||
#setw -g window-status-current-attr bold
|
||||
#setw -g window-status-current-format ' #I#[fg=colour250]:#[fg=colour255]#W#[fg=colour50]#F '
|
||||
#
|
||||
#setw -g window-status-fg colour138
|
||||
#setw -g window-status-bg colour235
|
||||
#setw -g window-status-attr none
|
||||
#setw -g window-status-format ' #I#[fg=colour237]:#[fg=colour250]#W#[fg=colour244]#F '
|
||||
#
|
||||
#setw -g window-status-bell-attr bold
|
||||
#setw -g window-status-bell-fg colour255
|
||||
#setw -g window-status-bell-bg colour1
|
||||
#
|
||||
## }
|
||||
## The messages {
|
||||
#
|
||||
#set -g message-attr bold
|
||||
#set -g message-fg colour232
|
||||
#set -g message-bg colour166
|
||||
#
|
||||
## }
|
||||
#
|
||||
|
||||
# Load Iceberg theme
|
||||
source-file ~/.tmux/iceberg.tmux.conf
|
||||
|
||||
# Iceberg-specific settings
|
||||
# Powerline separators
|
||||
separator_left="\ue0b0"
|
||||
separator_right="\ue0b2"
|
||||
|
||||
subseparator_left="\ue0b1"
|
||||
subseparator_right="\ue0b3"
|
||||
# separator_left="\ue0b0"
|
||||
# separator_right="\ue0b2"
|
||||
|
||||
# subseparator_left="\ue0b1"
|
||||
# subseparator_right="\ue0b3"
|
||||
|
||||
# Nord Theme
|
||||
set -g @plugin "arcticicestudio/nord-tmux"
|
||||
|
||||
# List your plugins here
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
|
@ -1,37 +0,0 @@
|
||||
# FILE: iceberg.tmux.conf
|
||||
# REPO: https://github.com/gkeep/iceberg-dark
|
||||
# MAINTAINER: gkeep <gkeep77@protonmail.com>
|
||||
|
||||
set -g status-justify "centre"
|
||||
set -g status "on"
|
||||
set -g status-left-style "none"
|
||||
set -g message-command-style "fg=#c6c8d1,bg=#2e3244"
|
||||
set -g status-right-style "none"
|
||||
set -g pane-active-border-style "fg=#454b68"
|
||||
set -g status-style "none,bg=#1e2132"
|
||||
set -g message-style "fg=#c6c8d1,bg=#2e3244"
|
||||
set -g pane-border-style "fg=#2e3244"
|
||||
set -g status-right-length "100"
|
||||
set -g status-left-length "100"
|
||||
setw -g window-status-activity-style "none,fg=#454b68,bg=#1e2132"
|
||||
setw -g window-status-separator ""
|
||||
setw -g window-status-style "none,fg=#c6c8d1,bg=#1e2132"
|
||||
|
||||
# modules
|
||||
module_left_1="#(whoami)"
|
||||
module_left_2="%R %a"
|
||||
|
||||
module_right_1="#(ip route get 1 | awk '{print $7}')"
|
||||
module_right_2="#H"
|
||||
|
||||
# separators
|
||||
separator_left="\ue0bc"
|
||||
separator_right="\ue0ba"
|
||||
|
||||
subseparator_left="\ue0bb"
|
||||
subseparator_right="\ue0bd"
|
||||
|
||||
set -g status-left "#[fg=#c6c8d1,bg=#454b68,bold] $module_left_1 #[fg=#454b68,bg=#2e3244,nobold,nounderscore,noitalics]$separator_left#[fg=#c6c8d1,bg=#2e3244] $module_left_2 #[fg=#2e3244,bg=#1e2132,nobold,nounderscore,noitalics]$separator_left#[fg=#c6c8d1,bg=#1e2132] #[fg=#1e2132,bg=#1e2132,nobold,nounderscore,noitalics]$separator_left"
|
||||
set -g status-right "#[fg=#1e2132,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1,bg=#1e2132] #[fg=#2e3244,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1,bg=#2e3244] $module_right_1 #[fg=#454b68,bg=#2e3244,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1,bg=#454b68,bold] $module_right_2 #{prefix_highlight}"
|
||||
setw -g window-status-format "#[fg=#1e2132,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1] #I $subseparator_right #W $subseparator_left#[fg=#1e2132,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right"
|
||||
setw -g window-status-current-format "#[fg=#2e3244,bg=#1e2132,nobold,nounderscore,noitalics]$separator_right#[fg=#c6c8d1,bg=#2e3244] #I $subseparator_right #W $subseparator_left #F #[fg=#2e3244,bg=#1e2132,nobold,nounderscore,noitalics]$separator_left"
|
@ -1,9 +1,6 @@
|
||||
" Syntax highlighting based on detected language
|
||||
syntax on
|
||||
|
||||
" Iceberg theme - I also use this theme in VSCode
|
||||
colorscheme iceberg
|
||||
|
||||
" Default GUI Window Geometry
|
||||
if has("gui_running")
|
||||
" Preferred window size
|
||||
@ -50,5 +47,7 @@ let g:go_auto_type_info = 1
|
||||
let g:better_whitespace_enabled=1
|
||||
let g:better_whitespace_ctermcolor='red'
|
||||
|
||||
colorscheme nord
|
||||
|
||||
execute pathogen#infect()
|
||||
filetype plugin indent on
|
||||
|
@ -5,9 +5,9 @@ source ~/.functions
|
||||
|
||||
# History Settings
|
||||
export HISTIGNORE="&:ls:[bf]g:exit:reset:clear:cd:cd ..:cd..:replay"
|
||||
export HISTSIZE=25000
|
||||
export HISTSIZE=2500000
|
||||
export HISTFILE=~/.zsh_history
|
||||
export SAVEHIST=10000
|
||||
export SAVEHIST=1000000
|
||||
setopt INC_APPEND_HISTORY
|
||||
setopt HIST_IGNORE_ALL_DUPS
|
||||
setopt HIST_IGNORE_SPACE
|
||||
|
@ -1,15 +0,0 @@
|
||||
#!/bin/bash
|
||||
# Provides access over our VPN to a shell-in-a-box instance that
|
||||
# is running on some WipeOS appliances. This backdoor exists for
|
||||
# instances that the appliance is on the VPN, but for whatever reason
|
||||
# we can't ssh in. This was brought about due to our Padnos customer.
|
||||
|
||||
CLIENTIP="$1"
|
||||
if [[ $# -le 0 ]]; then
|
||||
echo "please pass me the appliance's VPN address"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
xdg-open http://localhost/shell/
|
||||
sudo ssh -L "localhost:80:${CLIENTIP}:80" production-portal
|
||||
|
@ -1 +0,0 @@
|
||||
/home/dtodd/dev/WipeOS/Infrastructure/remote_debugging/fast-debug
|
@ -1,4 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
ssh -t login.wipeos.com "grep $1 /var/log/openvpn/openvpn-status.log" 2>/dev/null | cut -d$'\n' -f2 | cut -d',' -f1
|
||||
|
27
install.sh
27
install.sh
@ -74,16 +74,13 @@ echo "Linking Configuration files..."
|
||||
symlink "${DOTFILES}/.editorconfig" "${HOME}/.editorconfig"
|
||||
symlink "${DF_HOME}/.aliases" "${HOME}/.aliases"
|
||||
symlink "${DF_HOME}/.bashrc" "${HOME}/.bashrc"
|
||||
symlink "${DF_HOME}/.dmenurc" "${HOME}/.dmenurc"
|
||||
symlink "${DF_HOME}/.dmrc" "${HOME}/.dmrc"
|
||||
symlink "${DF_HOME}/.environment" "${HOME}/.environment"
|
||||
symlink "${DF_HOME}/.functions" "${HOME}/.functions"
|
||||
symlink "${DF_HOME}/.gitconfig" "${HOME}/.gitconfig"
|
||||
symlink "${DF_HOME}/.gtkrc.mine" "${HOME}/.gtkrc.mine"
|
||||
symlink "${DF_HOME}/.gtkrc-2.0" "${HOME}/.gtkrc-2.0"
|
||||
symlink "${DF_HOME}/.stalonetrayrc" "${HOME}/.stalonetrayrc"
|
||||
symlink "${DF_HOME}/.tmux.conf" "${HOME}/.tmux.conf"
|
||||
symlink "${DF_HOME}/.tmux/iceberg.tmux.conf" "${HOME}/.tmux/iceberg.tmux.conf"
|
||||
symlink "${DF_HOME}/.vimrc" "${HOME}/.vimrc"
|
||||
symlink "${DF_HOME}/.zshrc" "${HOME}/.zshrc"
|
||||
|
||||
@ -100,14 +97,21 @@ symlink "${DF_CONFIG}/nitrogen" "${HOME}/.config/nitrogen"
|
||||
symlink "${DF_CONFIG}/terminator" "${HOME}/.config/terminator"
|
||||
symlink "${DF_CONFIG}/ranger" "${HOME}/.config/ranger"
|
||||
symlink "${DF_CONFIG}/viewnior" "${HOME}/.config/viewnior"
|
||||
symlink "${DF_CONFIG}/volumeicon" "${HOME}/.config/volumeicon"
|
||||
symlink "${DF_CONFIG}/mimeapps.list" "${HOME}/.config/mimeapps.list"
|
||||
symlink "${DF_CONFIG}/Code/User/settings.json" "${HOME}/.config/Code/User/settings.json"
|
||||
|
||||
echo "Installing Iceberg GTK theme and Icon pack..."
|
||||
symlink "${DF_HOME}/.themes/oomox-iceberg" "${HOME}/.themes/oomox-iceberg"
|
||||
echo "Installing Nord rofi theme"
|
||||
wget https://raw.githubusercontent.com/undiabler/nord-rofi-theme/master/nord.rasi -O "${HOME}/.config/rofi/themes/nord.rasi"
|
||||
|
||||
echo "Installing Iceberg Icon pack..."
|
||||
# symlink "${DF_HOME}/.themes/oomox-iceberg" "${HOME}/.themes/oomox-iceberg"
|
||||
symlink "${DF_HOME}/.icons/oomox-iceberg" "${HOME}/.icons/oomox-iceberg"
|
||||
|
||||
echo "Installing Nord GTK theme"
|
||||
mkdir -p "${HOME}/.themes/Nordic"
|
||||
wget https://github.com/EliverLara/Nordic/releases/download/v2.2.0/Nordic.tar.xz -O "${HOME}/.themes/Nordic.tar.xz"
|
||||
tar -xf "${HOME}/.themes/Nordic.tar.xz" -C "${HOME}/.themes/Nordic"
|
||||
|
||||
echo "Building i3 configuration..."
|
||||
"${DF_HOME}/bin/build-i3-config"
|
||||
|
||||
@ -123,6 +127,9 @@ CHSH='no' RUNZSH='no' KEEP_ZSHRC='yes' sh -c "$(curl -fsSL https://raw.github.co
|
||||
echo "Installing VIM Pathogen..."
|
||||
curl -LSs https://tpo.pe/pathogen.vim -o "${HOME}/.vim/autoload/pathogen.vim"
|
||||
|
||||
echo "Installing VIM Nord theme"
|
||||
curl -fLo "${HOME}/.vim/colors/nord.vim" --create-dirs https://raw.githubusercontent.com/arcticicestudio/nord-vim/main/colors/nord.vim
|
||||
|
||||
echo "Installing VIM Sensible..."
|
||||
git clone git://github.com/tpope/vim-sensible.git "${HOME}/.vim/bundle/vim-sensible"
|
||||
|
||||
@ -132,14 +139,6 @@ git clone https://github.com/ntpeters/vim-better-whitespace.git "${HOME}/.vim/bu
|
||||
echo "Installing VIM Indent Guides..."
|
||||
git clone https://github.com/thaerkh/vim-indentguides.git "${HOME}/.vim/bundle/vim-indentguides"
|
||||
|
||||
echo "Installing VIM Iceberg theme..."
|
||||
cd /tmp
|
||||
wget https://www.vim.org/scripts/download_script.php?src_id=25718 -O iceberg.zip
|
||||
unzip iceberg.zip
|
||||
cp -r iceberg.vim/{autoload,colors} "${HOME}/.vim/"
|
||||
rm -rf /tmp/iceberg*
|
||||
cd "${HOME}"
|
||||
|
||||
if [ -e "${POSTINSTALL_SCRIPT}" ]; then
|
||||
echo "Running post install..."
|
||||
"${POSTINSTALL_SCRIPT}"
|
||||
|
29
pacman.lst
29
pacman.lst
@ -33,7 +33,6 @@ chromium
|
||||
clipit
|
||||
coreutils
|
||||
cpupower
|
||||
crda
|
||||
cronie
|
||||
cryptsetup
|
||||
device-mapper
|
||||
@ -79,6 +78,7 @@ git
|
||||
glibc
|
||||
glibc-locales
|
||||
gnome-keyring
|
||||
gnu-netcat
|
||||
gource
|
||||
gparted
|
||||
gradle
|
||||
@ -110,28 +110,28 @@ iproute2
|
||||
iputils
|
||||
jfsutils
|
||||
jq
|
||||
kdeconnect
|
||||
kdenlive
|
||||
kimageformats
|
||||
krita
|
||||
kvantum-manjaro
|
||||
less
|
||||
lib32-flex
|
||||
lib32-libva-vdpau-driver
|
||||
lib32-mesa-demos
|
||||
lib32-mesa-vdpau
|
||||
lib32-vulkan-intel
|
||||
lib32-vulkan-radeon
|
||||
lib32-nvidia-utils
|
||||
libdvdcss
|
||||
libgpod
|
||||
libtool
|
||||
libva-mesa-driver
|
||||
libva-vdpau-driver
|
||||
libxnvctrl
|
||||
licenses
|
||||
lightdm-settings
|
||||
lightdm-slick-greeter
|
||||
linux510
|
||||
linux510-nvidia
|
||||
linux510-r8168
|
||||
logrotate
|
||||
lrzsz
|
||||
lutris
|
||||
lvm2
|
||||
lxappearance
|
||||
lxinput
|
||||
@ -159,9 +159,9 @@ matcha-gtk-theme
|
||||
mdadm
|
||||
memtest86+
|
||||
mesa-demos
|
||||
mesa-vdpau
|
||||
mhwd
|
||||
mhwd-db
|
||||
minicom
|
||||
mkinitcpio-openswap
|
||||
mlocate
|
||||
mobile-broadband-provider-info
|
||||
@ -185,6 +185,7 @@ noto-fonts-emoji
|
||||
nss-mdns
|
||||
ntfs-3g
|
||||
ntp
|
||||
nvidia-utils
|
||||
obs-studio
|
||||
okular
|
||||
openresolv
|
||||
@ -205,7 +206,6 @@ perl
|
||||
perl-file-mimeinfo
|
||||
pigz
|
||||
pinta
|
||||
pkgconf
|
||||
polkit-gnome
|
||||
poppler-data
|
||||
powerline
|
||||
@ -213,9 +213,9 @@ powerline-vim
|
||||
powertop
|
||||
procps-ng
|
||||
psmisc
|
||||
pyenv
|
||||
python-pipenv
|
||||
python-pygit2
|
||||
qt5-styleplugins
|
||||
qt5ct
|
||||
ranger
|
||||
reiserfsprogs
|
||||
@ -261,14 +261,13 @@ unzip
|
||||
upower
|
||||
usbutils
|
||||
util-linux
|
||||
vertex-maia-themes
|
||||
vibrancy-icons-teal
|
||||
viewnior
|
||||
virt-manager
|
||||
vivaldi
|
||||
vivaldi-ffmpeg-codecs
|
||||
vlc
|
||||
volumeicon
|
||||
vulkan-intel
|
||||
vulkan-radeon
|
||||
w3m
|
||||
wallpapers-juhraya
|
||||
wget
|
||||
@ -288,10 +287,6 @@ xf86-input-elographics
|
||||
xf86-input-evdev
|
||||
xf86-input-libinput
|
||||
xf86-input-void
|
||||
xf86-video-amdgpu
|
||||
xf86-video-ati
|
||||
xf86-video-intel
|
||||
xf86-video-nouveau
|
||||
xfburn
|
||||
xfce4-power-manager
|
||||
xfsprogs
|
||||
|
@ -1,14 +1,21 @@
|
||||
1password
|
||||
android-sdk-platform-tools
|
||||
bauh
|
||||
celt
|
||||
dunstify
|
||||
eclipse-java
|
||||
gconf
|
||||
genkfs
|
||||
giblib
|
||||
go-mtpfs-git
|
||||
i3ipc-python-git
|
||||
i3lock-fancy-git
|
||||
intellij-idea-ce
|
||||
knightos-sass
|
||||
kpack
|
||||
lib32-unixodbc
|
||||
libffi7
|
||||
libglade
|
||||
libticables
|
||||
libticalcs
|
||||
libticonv
|
||||
@ -17,13 +24,25 @@ minecraft-launcher
|
||||
opencolorio1
|
||||
openrgb
|
||||
pangox-compat
|
||||
polymc
|
||||
polymc-curseforge
|
||||
postman-bin
|
||||
powerline-fonts-git
|
||||
progsreiserfs
|
||||
pygtk
|
||||
python2-cairo
|
||||
python2-gobject2
|
||||
python2-numpy
|
||||
python39
|
||||
qdirstat
|
||||
qmk-git
|
||||
qt5-styleplugins
|
||||
remmina-plugin-rdesktop
|
||||
scas
|
||||
spotify
|
||||
tilp
|
||||
vertex-maia-themes
|
||||
vi-vim-symlink
|
||||
visual-studio-code-bin
|
||||
xdg-su
|
||||
zenmap
|
||||
|
Loading…
Reference in New Issue
Block a user