mirror of
https://github.com/balkian/dotfiles.git
synced 2024-12-22 00:38:11 +00:00
Add rofi themes and bluetooth menu
+ Fixed dunst
This commit is contained in:
parent
d1067cbb00
commit
f395ed8f03
@ -66,6 +66,7 @@ bindsym $mod+q kill
|
||||
#bindsym $mod+Space exec --no-startup-id dmenu_run
|
||||
bindsym $mod+space exec --no-startup-id runmenu
|
||||
bindsym $mod+o exec --no-startup-id filemenu $HOME
|
||||
bindsym $mod+b exec btmenu
|
||||
|
||||
#
|
||||
|
||||
|
19
scripts/.bin/btmenu
Executable file
19
scripts/.bin/btmenu
Executable file
@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
if command -v myrofi >/dev/null 2>&1;
|
||||
then
|
||||
program="myrofi -no-show-icons -dmenu"
|
||||
else
|
||||
program="dmenu"
|
||||
fi
|
||||
|
||||
bluetoothctl power on
|
||||
bluetoothctl agent on
|
||||
bluetoothctl default-agent
|
||||
# bluetoothctl scan on
|
||||
list=$(bluetoothctl paired-devices);
|
||||
device=$(echo -ne "$list" | cut -d' ' -f 3- | $program "$@" )
|
||||
|
||||
addr=$(echo "$list" | grep "$device" | cut -d' ' -f2)
|
||||
|
||||
bluetoothctl connect "$addr"
|
@ -21,12 +21,11 @@ else
|
||||
fi
|
||||
fi
|
||||
|
||||
if command -v rofi >/dev/null 2>&1;
|
||||
if command -v myrofi >/dev/null 2>&1;
|
||||
then
|
||||
launcher="rofi -dmenu -i -mesg '""$input""'"
|
||||
myrofi -show file-browser $input
|
||||
else
|
||||
launcher="dmenu -fn "-*-cure-medium-*-*-*-11-*-*-*-*-*-*-*" -nb "#101010" -nf "#5f5f5f" -sb "#191
|
||||
fi
|
||||
|
||||
# find "$input" -maxdepth 1 ! -path "$input" -print | sh -c "$launcher" | xargs $0
|
||||
ls -t1 "$input" | sh -c "$launcher" | xargs -I '{}' $0 "$input/{}"
|
||||
fi
|
||||
|
2
scripts/.bin/myrofi
Executable file
2
scripts/.bin/myrofi
Executable file
@ -0,0 +1,2 @@
|
||||
#1/bin/sh
|
||||
rofi -theme ~/.bin/rofi-slate-theme.rasi -i "$@"
|
@ -1,8 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
if command -v rofi >/dev/null 2>&1;
|
||||
if command -v myrofi >/dev/null 2>&1;
|
||||
then
|
||||
launcher="rofi -dmenu -i -mesg '""$input""'"
|
||||
launcher="myrofi -dmenu -no-show-icons -i -mesg '""$input""'"
|
||||
else
|
||||
launcher="dmenu -fn "-*-cure-medium-*-*-*-11-*-*-*-*-*-*-*" -nb "#101010" -nf "#5f5f5f" -sb "#191
|
||||
fi
|
||||
|
@ -3,9 +3,9 @@
|
||||
shopt -s nullglob globstar
|
||||
|
||||
|
||||
if command -v rofi >/dev/null 2>&1;
|
||||
if command -v myrofi >/dev/null 2>&1;
|
||||
then
|
||||
program="rofi -dmenu"
|
||||
program="myrofi -no-show-icons -dmenu"
|
||||
else
|
||||
program="dmenu"
|
||||
fi
|
||||
|
36
scripts/.bin/rofi-black-colors.rasi
Normal file
36
scripts/.bin/rofi-black-colors.rasi
Normal file
@ -0,0 +1,36 @@
|
||||
/* -- Gray -- */
|
||||
|
||||
* {
|
||||
shade1: #000000;
|
||||
shade2: #050505;
|
||||
shade3: #101010;
|
||||
shade4: #151515;
|
||||
shade5: #202020;
|
||||
shade6: #252525;
|
||||
shade7: #303030;
|
||||
shade8: #353535;
|
||||
}
|
||||
|
||||
/**** Comment One First To Use Another ****/
|
||||
|
||||
/* -- Dark -- */
|
||||
* {
|
||||
border: @shade2;
|
||||
border-alt: @shade3;
|
||||
background: @shade4;
|
||||
background-alt: @shade5;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
||||
|
||||
/* -- light -- */
|
||||
* {
|
||||
border: @shade8;
|
||||
border-alt: @shade7;
|
||||
background: @shade6;
|
||||
background-alt: @shade6;
|
||||
selected: @shade5;
|
||||
foreground: #ffffff;
|
||||
urgent: #DA4453;
|
||||
}
|
139
scripts/.bin/rofi-slate-theme.rasi
Normal file
139
scripts/.bin/rofi-slate-theme.rasi
Normal file
@ -0,0 +1,139 @@
|
||||
/*
|
||||
* Based on a theme by:
|
||||
*
|
||||
* Author : Aditya Shakya
|
||||
* Mail : adi1090x@gmail.com
|
||||
* Github : @adi1090x
|
||||
* Twitter : @adi1090x
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
font: "FantasqueSansMono Nerd Font 10";
|
||||
show-icons: true;
|
||||
icon-theme: "Papirus";
|
||||
display-drun: "";
|
||||
drun-display-format: "{name}";
|
||||
disable-history: false;
|
||||
fullscreen: false;
|
||||
hide-scrollbar: false;
|
||||
sidebar-mode: false;
|
||||
}
|
||||
|
||||
@import "rofi-black-colors.rasi"
|
||||
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
border: 2% 1% 2% 1%;
|
||||
border-color: @border;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
height: 70%;
|
||||
width: 70%;
|
||||
location: center;
|
||||
x-offset: 0;
|
||||
y-offset: 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
padding: 0% 1% 0% 0%;
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
font: "FantasqueSansMono Nerd Font 12";
|
||||
}
|
||||
|
||||
entry {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
placeholder-color: @foreground;
|
||||
expand: true;
|
||||
horizontal-align: 0;
|
||||
placeholder: "Search";
|
||||
padding: 0.15% 0% 0% 0%;
|
||||
blink: true;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
children: [ prompt, entry ];
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
expand: false;
|
||||
border: 0% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
margin: 0% 38.25% 0% 0%;
|
||||
padding: 1%;
|
||||
position: center;
|
||||
}
|
||||
|
||||
listview {
|
||||
background-color: @background;
|
||||
columns: 8;
|
||||
spacing: 1%;
|
||||
cycle: false;
|
||||
dynamic: true;
|
||||
layout: vertical;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
background-color: @background;
|
||||
border: 2% 1% 2% 1%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
children: [ inputbar, listview ];
|
||||
spacing: 2%;
|
||||
padding: 6% 3% 6% 3%;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
orientation: vertical;
|
||||
border-radius: 0%;
|
||||
padding: 1% 0% 1% 0%;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 64px;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
element-text {
|
||||
expand: true;
|
||||
horizontal-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
margin: 0.5% 1% 0% 1%;
|
||||
}
|
||||
|
||||
element normal.urgent,
|
||||
element alternate.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
border-radius: 1%;
|
||||
}
|
||||
|
||||
element normal.active,
|
||||
element alternate.active {
|
||||
background-color: @background-alt;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @selected;
|
||||
text-color: @foreground;
|
||||
border: 0% 0% 0.3% 0%;
|
||||
border-radius: 0% 0% 0% 0%;
|
||||
border-color: @border-alt;
|
||||
}
|
||||
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
element selected.active {
|
||||
background-color: @background-alt;
|
||||
color: @foreground;
|
||||
}
|
@ -2,7 +2,7 @@
|
||||
|
||||
if command -v rofi >/dev/null 2>&1;
|
||||
then
|
||||
launcher="rofi -show combi -combi-hide-mode-prefix -combi-modi drun,run"
|
||||
launcher="rofi -show combi -combi-hide-mode-prefix -combi-modi window,drun,run -theme .bin/rofi-slate-theme.rasi"
|
||||
else
|
||||
launcher="dmenu_run -fn "-*-cure-medium-*-*-*-11-*-*-*-*-*-*-*" -nb "#101010" -nf "#5f5f5f" -sb "#191919" -sf "#b72f62" -b"
|
||||
fi
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if command -v rofi >/dev/null 2>&1;
|
||||
then
|
||||
program="rofi -show window"
|
||||
program="rofi -show window -combi-hide-mode-prefix -combi-modi drun,run -theme .bin/rofi-slate-theme.rasi"
|
||||
else
|
||||
program="i3-winmenu.py"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user